Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / MProfile_Forwarding / test_i.h
blob10164445f01d1d73d13421f955beb0fc633c159e
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Balachandran Natarajan
7 */
8 //=============================================================================
11 #ifndef MPROFILE_FORWARDING_TEST_I_H
12 #define MPROFILE_FORWARDING_TEST_I_H
14 #include "testS.h"
16 /**
17 * @class Simple_Server_i
19 * @brief Simpler Server implementation
21 * Implements the Simple_Server interface in test.idl
23 class Simple_Server_i : public POA_Simple_Server
25 public:
26 Simple_Server_i (CORBA::ORB_ptr orb);
28 // ctor
30 /// ctor
31 Simple_Server_i ();
33 // = The Simple_Server methods.
34 void remote_call ();
36 void shutdown ();
38 private:
39 CORBA::ORB_var orb_;
42 #if defined(__ACE_INLINE__)
43 #include "test_i.inl"
44 #endif /* __ACE_INLINE__ */
46 #endif /* TAO_MT_CLIENT_TEST_I_H */