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
/
InterOp-Naming
/
INS_i.cpp
blob
0f1f28137e0b8546dcb1ddc117be8f16067acdda
1
#include
"INS_i.h"
2
3
// Constructor
4
5
INS_i
::
INS_i
(
void
)
6
{
7
}
8
9
// Destructor
10
INS_i
::~
INS_i
(
void
)
11
{
12
}
13
14
// Set the ORB pointer.
15
void
16
INS_i
::
orb
(
CORBA
::
ORB_ptr o
)
17
{
18
this
->
orb_
=
CORBA
::
ORB
::
_duplicate
(
o
);
19
}
20
21
char
*
22
INS_i
::
test_ins
(
void
)
23
{
24
ACE_DEBUG
((
LM_DEBUG
,
25
"Inside Operation
\n
"
));
26
return
CORBA
::
string_dup
(
"Success"
);
27
}