2 //=============================================================================
6 * @author Carlos O'Ryan
8 //=============================================================================
11 #ifndef TAO_MT_SERVER_TEST_I_H
12 #define TAO_MT_SERVER_TEST_I_H
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
27 Simple_Server_i (CORBA::ORB_ptr orb
);
29 // = The Simple_Server methods.
30 CORBA::Long
test_method (CORBA::Long x
);
41 * @class Another_One_i
43 * @brief Simpler Server implementation
45 * Implements the Simple_Server interface in test.idl
47 class Another_One_i
: public POA_Another_One
51 Another_One_i (CORBA::ORB_ptr orb
);
53 // = The Simple_Server methods.
54 CORBA::Long
test_method (CORBA::Long x
);
61 #if defined(__ACE_INLINE__)
63 #endif /* __ACE_INLINE__ */
65 #endif /* TAO_MT_SERVER_TEST_I_H */