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
/
performance-tests
/
Latency
/
AMI
/
Server_Task.cpp
blob
51288cdde3132dca556b3a7beb2aa8ed9b338bb7
1
#include
"Server_Task.h"
2
3
Server_Task
::
Server_Task
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
int
9
Server_Task
::
svc
()
10
{
11
try
12
{
13
this
->
orb_
->
run
();
14
}
15
catch
(
const
CORBA
::
Exception
&){}
16
return
0
;
17
}