repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
ImplRepo
/
oneway
/
Test_i.cpp
blob
ee6d0e6ea32e6a1c5403e5e8e9b68747ae2e7315
1
/* -*- C++ -*- */
2
3
#include
"Test_i.h"
4
#include
"ace/OS_NS_unistd.h"
5
6
Test_i
::
Test_i
()
7
:
count_
(
0
)
8
{
9
}
10
11
Test_i
::~
Test_i
()
12
{
13
}
14
15
void
16
Test_i
::
foo
()
17
{
18
ACE_DEBUG
((
LM_DEBUG
,
"foo called
\n
"
));
19
++
this
->
count_
;
20
}
21
22
CORBA
::
Short
23
Test_i
::
get_call_count
()
24
{
25
CORBA
::
Short r
=
this
->
count_
;
26
this
->
count_
=
0
;
27
return
r
;
28
}
29
30