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
Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
tests
/
CSD_Strategy_Tests
/
TP_Foo_B
/
Callback_i.cpp
blob
7e881300082a964016ce3002c2c933a74aedebc1
1
#include
"Callback_i.h"
2
3
Callback_i
::
Callback_i
()
4
:
num_callbacks_
(
0
)
5
{
6
}
7
8
9
Callback_i
::~
Callback_i
()
10
{
11
}
12
13
14
void
15
Callback_i
::
test_method
()
16
{
17
this
->
num_callbacks_
++;
18
}
19
20
21
void
22
Callback_i
::
gather_stats
(
Foo_B_Statistics
&
stats
)
23
{
24
stats
.
actual_callbacks
(
this
->
num_callbacks_
);
25
}
26