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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Inherited_Operation
/
InheritedOp_i.cpp
blob
393c0fd77f5a637c759ac1837dbb5ef4b7288801
1
#include
"InheritedOp_i.h"
2
3
Derived_i
::
Derived_i
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
orb
)
5
{
6
}
7
8
void
9
Derived_i
::
BaseOp
()
10
{
11
ACE_DEBUG
((
LM_DEBUG
,
"BaseOp upcall successful
\n
"
));
12
}
13
14
void
15
Derived_i
::
shutdown
()
16
{
17
orb_
->
shutdown
();
18
}