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
/
Bug_1020_Basic_Regression
/
Client_Task.cpp
blob
743a534c9594824a5f7906a649a658bf0115b6bd
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
(
void
)
10
{
11
12
try
13
{
14
this
->
orb_
->
run
();
15
}
16
catch
(
const
CORBA
::
Exception
&)
17
{
18
return
-
1
;
19
}
20
21
return
0
;
22
}