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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
ImplRepo
/
ReconnectServer
/
ORB_Task.cpp
blob
0f72129c2223ea2805a59906f734d771ba3d97cb
1
/**
2
* @file ORB_Task.cpp
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#include
"ORB_Task.h"
7
#include
"tao/Environment.h"
8
9
ORB_Task
::
ORB_Task
(
CORBA
::
ORB_ptr orb
)
10
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
11
{
12
}
13
14
int
15
ORB_Task
::
svc
()
16
{
17
try
18
{
19
this
->
orb_
->
run
();
20
}
21
catch
(
const
CORBA
::
Exception
& )
22
{
23
}
24
return
0
;
25
}