blob: ef5dfba1a80e18a8c0d412cfdd287d879eb2d925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include "Roundtrip.h"
Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
Test::Timestamp
Roundtrip::test_octet_method (const Test::octet_load &,
Test::Timestamp send_time)
{
return send_time;
}
Test::Timestamp
Roundtrip::test_long_method (const Test::long_load &,
Test::Timestamp send_time)
{
return send_time;
}
Test::Timestamp
Roundtrip::test_char_method (const Test::char_load &,
Test::Timestamp send_time)
{
return send_time;
}
Test::Timestamp
Roundtrip::test_longlong_method (const Test::longlong_load &,
Test::Timestamp send_time)
{
return send_time;
}
Test::Timestamp
Roundtrip::test_double_method (const Test::double_load &,
Test::Timestamp send_time)
{
return send_time;
}
Test::Timestamp
Roundtrip::test_short_method (const Test::short_load &,
Test::Timestamp send_time)
{
return send_time;
}
void
Roundtrip::shutdown ()
{
this->orb_->shutdown (false);
}
|