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
/
Bug_3108_Regression
/
test_i.cpp
blob
79a511af2f33eca5865ceb9ae6b889ee54ebbc82
1
#include
"test_i.h"
2
3
test_i
::
test_i
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
CORBA
::
Long
9
test_i
::
test_method
()
10
{
11
ACE_DEBUG
((
LM_DEBUG
,
"client called us.
\n
"
));
12
13
return
0
;
14
}
15
16
void
17
test_i
::
shutdown
()
18
{
19
this
->
orb_
->
shutdown
(
false
);
20
}