Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / MT_Client / test_i.h
blob5990b2f3642d59306ce7b4d084c2a93ff6b87754
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Carlos O'Ryan
7 */
8 //=============================================================================
11 #ifndef TAO_MT_CLIENT_TEST_I_H
12 #define TAO_MT_CLIENT_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 /// ctor
27 Simple_Server_i (CORBA::ORB_ptr orb);
29 // = The Simple_Server methods.
30 void test_method (void);
32 void shutdown (void);
34 private:
35 CORBA::ORB_var orb_;
38 #if defined(__ACE_INLINE__)
39 #include "test_i.inl"
40 #endif /* __ACE_INLINE__ */
42 #endif /* TAO_MT_CLIENT_TEST_I_H */