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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1269_Regression
/
Echo.h
blob
fddaa4e33e8a1b1bca6fe7e7a3e93a70a80c43fc
1
#ifndef Echo__h_
2
#define Echo__h_
3
/**
4
* @file Echo.h
5
*
6
* @author Carlos O'Ryan <coryan@atdesk.com>
7
*/
8
#include
"TestS.h"
9
10
class
Echo
:
public POA_Test
::
Echo
11
{
12
public
:
13
Echo
(
CORBA
::
ORB_ptr orb
,
14
int
abort_counter
);
15
16
virtual
void
echo_payload
(
Test
::
Payload
const
&
data
);
17
18
private
:
19
CORBA
::
ORB_var orb_
;
20
21
int
abort_counter_
;
22
};
23
24
#endif
/* Echo__h_ */