Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Single_Read / test_i.h
blob100978728df7c0181d4942cb7fa14c2a91a3732e
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Balachandran Natarajan <bala@cs.wustl.edu>
7 */
8 //=============================================================================
11 #ifndef TAO_SINGLE_READ_TEST_I_H
12 #define TAO_SINGLE_READ_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, const ACE_TCHAR *file_name);
27 // = The test interface methods.
28 void method (CORBA::ULong request_number,
29 const test::data &);
31 void shutdown ();
33 private:
34 /// The ORB.
35 CORBA::ORB_var orb_;
37 CORBA::Boolean client_done_;
39 const ACE_TCHAR *client_done_file_;
42 #endif /* TAO_SINGLE_READ_TEST_I_H*/