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.cpp
blob
8f2d59e1c85c91f4a22fdad10d60d91c42408263
1
/**
2
* @file Echo.cpp
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#include
"Echo.h"
7
8
Echo
::
Echo
(
CORBA
::
ORB_ptr orb
)
9
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
10
{
11
}
12
13
char
*
14
Echo
::
echo_operation
(
char const
*
the_input
)
15
{
16
return
CORBA
::
string_dup
(
the_input
);
17
}
18
19
void
20
Echo
::
shutdown
()
21
{
22
this
->
orb_
->
shutdown
(
0
);
23
}