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
/
Portable_Interceptors
/
ORB_Shutdown
/
test_i.cpp
blob
3fc798684a30dff00dd122e6cb66b600fbf9487f
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
test_i
::~
test_i
(
void
)
9
{
10
}
11
12
void
13
test_i
::
hello
(
void
)
14
{
15
ACE_DEBUG
((
LM_DEBUG
,
"Hello!
\n
"
));
16
}
17
18
void
19
test_i
::
shutdown
(
void
)
20
{
21
ACE_DEBUG
((
LM_DEBUG
,
22
"Shutting down ORB.
\n
"
));
23
24
this
->
orb_
->
shutdown
(
0
);
25
}