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 #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git]
/
TAO
/
tests
/
Portable_Interceptors
/
AMI
/
Echo.h
blob
cfeeb6829166ea5cc97108f27f5f5b266fcc49cf
1
/**
2
* @file Echo.h
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#ifndef Echo__h_
7
#define Echo__h_
8
9
#include
"TestS.h"
10
#include
"tao/PortableServer/PortableServer.h"
11
12
class
Echo
13
:
public POA_Test
::
Echo
14
{
15
public
:
16
Echo
(
CORBA
::
ORB_ptr orb
);
17
18
virtual
char
*
echo_operation
(
char const
*
the_input
);
19
virtual
void
shutdown
();
20
21
private
:
22
CORBA
::
ORB_var orb_
;
23
};
24
25
#endif
/* Echo__h_ */