Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / performance-tests / Sequence_Latency / AMH_Single_Threaded / Roundtrip.h
blobe2f09f0b19754a070956333298c9d2178b9cc46b
2 #ifndef ROUNDTRIP_H
3 #define ROUNDTRIP_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 #if defined (_MSC_VER)
9 # pragma warning(push)
10 # pragma warning (disable:4250)
11 #endif /* _MSC_VER */
13 /// Implement the Test::Roundtrip interface
14 class Roundtrip
15 : public virtual POA_Test::AMH_Roundtrip
17 public:
18 /// Constructor
19 Roundtrip (CORBA::ORB_ptr orb);
21 // = The skeleton methods
22 void test_octet_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
23 const Test::octet_load& ol,
24 Test::Timestamp send_time);
27 void test_long_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
28 const Test::long_load& ol,
29 Test::Timestamp send_time);
31 void test_short_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
32 const Test::short_load& ol,
33 Test::Timestamp send_time);
36 void test_char_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
37 const Test::char_load& ol,
38 Test::Timestamp send_time);
40 void test_longlong_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
41 const Test::longlong_load& ol,
42 Test::Timestamp send_time);
45 void test_double_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
46 const Test::double_load& ol,
47 Test::Timestamp send_time);
50 void shutdown (Test::AMH_RoundtripResponseHandler_ptr _tao_rh);
52 private:
53 /// Use an ORB reference to convert strings to objects and shutdown
54 /// the application.
55 CORBA::ORB_var orb_;
58 #if defined(_MSC_VER)
59 # pragma warning(pop)
60 #endif /* _MSC_VER */
62 #include /**/ "ace/post.h"
63 #endif /* ROUNDTRIP_H */