Merge pull request #2220 from DOCGroup/revert-2217-jwi-inetwraning
[ACE_TAO.git] / TAO / performance-tests / Latency / AMH_Single_Threaded / Roundtrip.h
bloba99a293f1fbc568e9d0b63f0116af3e5e8ab401f
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_method (Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
23 Test::Timestamp send_time);
25 void shutdown (Test::AMH_RoundtripResponseHandler_ptr _tao_rh);
27 private:
28 /// Use an ORB reference to convert strings to objects and shutdown
29 /// the application.
30 CORBA::ORB_var orb_;
33 #if defined(_MSC_VER)
34 # pragma warning(pop)
35 #endif /* _MSC_VER */
37 #include /**/ "ace/post.h"
38 #endif /* ROUNDTRIP_H */