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 #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1020_Regression
/
ORB_Task.cpp
blob
930327a63a8e9273d7ad25e893fe45cd1d17bec2
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
10
ORB_Task
::
ORB_Task
(
CORBA
::
ORB_ptr orb
)
11
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
12
{
13
}
14
15
int
16
ORB_Task
::
svc
()
17
{
18
try
19
{
20
this
->
orb_
->
run
();
21
}
22
catch
(
const
CORBA
::
Exception
& )
23
{
24
}
25
return
0
;
26
}