Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / Latency / Collocation / Roundtrip.h
blob25b26d1f4cdd3dce9871647f6e56c96bccbb61a9
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 (void);
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 */