Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / performance-tests / Latency / Collocation / Roundtrip.h
blob9884f4478d6beacc5f570ef246480f85ba8dc554
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::Roundtrip
17 public:
18 /// Constructor
19 Roundtrip (CORBA::ORB_ptr orb);
21 // = The skeleton methods
22 virtual Test::Timestamp test_method (Test::Timestamp send_time);
24 virtual void shutdown ();
26 private:
27 /// Use an ORB reference to convert strings to objects and shutdown
28 /// the application.
29 CORBA::ORB_var orb_;
32 #if defined(_MSC_VER)
33 # pragma warning(pop)
34 #endif /* _MSC_VER */
36 #include /**/ "ace/post.h"
37 #endif /* ROUNDTRIP_H */