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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
performance-tests
/
Latency
/
DII
/
Roundtrip.cpp
blob
290d5dd03261339c784191909798c75e07d1996a
1
#include
"Roundtrip.h"
2
3
Roundtrip
::
Roundtrip
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
Test
::
Timestamp
9
Roundtrip
::
test_method
(
Test
::
Timestamp send_time
)
10
{
11
return
send_time
;
12
}
13
14
void
15
Roundtrip
::
shutdown
()
16
{
17
this
->
orb_
->
shutdown
(
false
);
18
}