Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / tests / FaultTolerance / IOGR / test_i.h
blobc916e886919082620ed0c6eb1208b84b3ae0a848
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Bala Natarajan <bala@cs.wustl.edu>
7 */
8 //=============================================================================
11 #ifndef TAO_FT_IOGR_TEST_I_H
12 #define TAO_FT_IOGR_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 /// ctor
30 Simple_Server_i (void);
32 // = The Simple_Server methods.
33 void remote_call (void);
35 void shutdown (void);
37 private:
38 CORBA::ORB_var orb_;
41 #endif /* TAO_FT_IOGR_TEST_I_H */