Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / tests / Security / MT_SSLIOP / test_i.h
blobe86c3d80b96daf7b9c9bc8432614149db735596c
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Carlos O'Ryan
7 */
8 //=============================================================================
11 #ifndef TAO_MT_SERVER_TEST_I_H
12 #define TAO_MT_SERVER_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 CORBA::Long test_method (CORBA::Long x);
32 void shutdown (void);
34 private:
35 /// The ORB
36 CORBA::ORB_var orb_;
40 /**
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
49 public:
50 /// ctor
51 Another_One_i (CORBA::ORB_ptr orb);
53 // = The Simple_Server methods.
54 CORBA::Long test_method (CORBA::Long x);
56 private:
57 /// The ORB
58 CORBA::ORB_var orb_;
61 #if defined(__ACE_INLINE__)
62 #include "test_i.inl"
63 #endif /* __ACE_INLINE__ */
65 #endif /* TAO_MT_SERVER_TEST_I_H */