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_1020_Regression
/
Echo.h
blob
6f0ac823cdf4e2a77ae38f37985679f5b44e7438
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
15
virtual Test
::
Payload
*
echo_payload
(
Test
::
Payload
const
&
data
);
16
17
private
:
18
CORBA
::
ORB_var orb_
;
19
};
20
21
#endif
/* Echo__h_ */