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_1020_Basic_Regression
/
Client_Task.cpp
blob
50c18856bd1db3f28e3abbc61c280d4422a50901
1
#include
"Client_Task.h"
2
3
Client_Task
::
Client_Task
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
int
9
Client_Task
::
svc
()
10
{
11
try
12
{
13
this
->
orb_
->
run
();
14
}
15
catch
(
const
CORBA
::
Exception
&)
16
{
17
return
-
1
;
18
}
19
20
return
0
;
21
}