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
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
tests
/
DLL_ORB
/
Test_i.cpp
blob
61653edb87de2921a08981e54324811ba62c37a7
1
// -*- C++ -*-
2
#include
"Test_i.h"
3
4
Test_i
::
Test_i
()
5
:
orb_
()
6
{
7
}
8
9
void
10
Test_i
::
invoke_me
()
11
{
12
ACE_DEBUG
((
LM_INFO
,
13
"(%P|%t) Test method invoked.
\n
"
));
14
}
15
16
void
17
Test_i
::
shutdown
()
18
{
19
ACE_DEBUG
((
LM_INFO
,
20
"Server is shutting down.
\n
"
));
21
22
if
(!
CORBA
::
is_nil
(
this
->
orb_
.
in
()))
23
this
->
orb_
->
shutdown
(
false
);
24
}
25
26
void
27
Test_i
::
orb
(
CORBA
::
ORB_ptr orb
)
28
{
29
this
->
orb_
=
CORBA
::
ORB
::
_duplicate
(
orb
);
30
}