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
/
performance-tests
/
Latency
/
DII
/
Roundtrip.cpp
blob
8ff0316770f68107a726efeaa43e6170b9d3f407
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
(
void
)
16
{
17
this
->
orb_
->
shutdown
(
0
);
18
}