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_2966_Regression
/
Hello.cpp
blob
6d827808c887e5d62d91d0c9d6298493cd8f9c02
1
// -*- C++ -*-
2
#include
"Hello.h"
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
}