Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / examples / Buffered_Oneways / test_i.h
blob7abab357bf25bd42abf666d7f1782dae2c5499a2
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Irfan Pyarali
7 */
8 //=============================================================================
11 #ifndef TAO_BUFFERED_ONEWAYS_TEST_I_H
12 #define TAO_BUFFERED_ONEWAYS_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);
30 void shutdown ();
32 private:
33 /// The ORB.
34 CORBA::ORB_var orb_;
37 #endif /* TAO_BUFFERED_ONEWAYS_TEST_I_H */