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
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
Bug_2800_Regression
/
Hello.cpp
blob
0ce11d8abb5cffda06f079eee059c5ded65de8d7
1
#include
"Hello.h"
2
3
4
Hello
::
Hello
(
CORBA
::
ORB_ptr orb
)
5
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
6
{
7
}
8
9
char
*
10
Hello
::
get_string
()
11
{
12
return
CORBA
::
string_dup
(
"Hello there!"
);
13
}
14
15
void
16
Hello
::
shutdown
()
17
{
18
this
->
orb_
->
shutdown
(
false
);
19
}