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
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3384_Regression
/
Client_i.h
blob
ef594f641b52b73f73a56d21319aeaeb6927c841
1
#include
"TestS.h"
2
3
class
Client
:
public POA_Test
::
Client
4
{
5
public
:
6
Client
()
7
:
POA_Test
::
Client
(),
8
reply_count_
(
0
) {}
9
virtual
~
Client
();
10
11
virtual
void
reply
(
12
const char
*
msg
);
13
14
int
reply_count
() {
return this
->
reply_count_
; }
15
16
private
:
17
int
reply_count_
;
18
};
19