Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / TAO / examples / Buffered_AMI / test_i.h
blob082c495bb58ed0fafb87880abf334c5535645fa7
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Irfan Pyarali
7 */
8 //=============================================================================
11 #ifndef TAO_BUFFERED_AMI_TEST_I_H
12 #define TAO_BUFFERED_AMI_TEST_I_H
14 #include "testS.h"
16 /**
17 * @class test_i
19 * @brief Simple implementation.
21 class test_i : public POA_test
23 public:
24 /// ctor.
25 test_i (CORBA::ORB_ptr orb);
27 // = The test interface methods.
28 void method (CORBA::ULong request_number,
29 CORBA::ULong_out reply_number);
31 void shutdown ();
33 private:
34 /// The ORB.
35 CORBA::ORB_var orb_;
38 #endif /* TAO_BUFFERED_AMI_TEST_I_H */