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
/
Any
/
Recursive
/
Hello.cpp
blob
b28f967a2616282de7fa5d61eb8b1e94daa70b52
1
#include
"Hello.h"
2
3
Hello
::
Hello
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
CORBA
::
Any
*
9
Hello
::
get_any
(
CORBA
::
Any
const
&
the_any
)
10
{
11
CORBA
::
Any
*
retval
=
0
;
12
13
ACE_NEW_THROW_EX
(
retval
,
14
CORBA
::
Any
(
the_any
),
15
CORBA
::
NO_MEMORY
());
16
17
return
retval
;
18
}
19
20
21
void
22
Hello
::
shutdown
(
void
)
23
{
24
this
->
orb_
->
shutdown
(
0
);
25
}