// $Id$ // ============================================================================ // // = LIBRARY // TAO/tests/Leader_Followers/ // // = FILENAME // test_i.h // // = AUTHOR // Irfan Pyarali // // ============================================================================ #include "testS.h" class test_i : public POA_test { // = TITLE // Simple test implementation. // public: test_i (CORBA::ORB_ptr orb); // ctor. // = The test interface methods. CORBA::ULong method (CORBA::ULong work ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)); private: CORBA::ORB_var orb_; // The ORB. };