// $Id$ // ============================================================================ // // = LIBRARY // TAO/orbsvcs/tests/FaultTolerance/IOGR // // = FILENAME // test_i.h // // = AUTHOR // Bala Natarajan // // ============================================================================ #ifndef TAO_FT_IOGR_TEST_I_H #define TAO_FT_IOGR_TEST_I_H #include "testS.h" class Simple_Server_i : public POA_Simple_Server { // = TITLE // Simpler Server implementation // // = DESCRIPTION // Implements the Simple_Server interface in test.idl // public: Simple_Server_i (CORBA::ORB_ptr orb); // ctor Simple_Server_i (void); // ctor // = The Simple_Server methods. void remote_call (TAO_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (TAO_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)); private: CORBA::ORB_var orb_; }; #endif /* TAO_FT_IOGR_TEST_I_H */