Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / MProfile_Forwarding / test_i.h
blobd4c5fd0753603bc6ae100425cfcc00884038ff0c
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 (void);
33 // = The Simple_Server methods.
34 void remote_call (void);
36 void shutdown (void);
38 private:
39 CORBA::ORB_var orb_;
43 #if defined(__ACE_INLINE__)
44 #include "test_i.inl"
45 #endif /* __ACE_INLINE__ */
47 #endif /* TAO_MT_CLIENT_TEST_I_H */