// $Id$ // ============================================================================ // // = LIBRARY // TAO/examples/Buffered_Oneways/ // // = FILENAME // test_i.h // // = AUTHOR // Irfan Pyarali // // ============================================================================ #ifndef TAO_BUFFERED_ONEWAYS_TEST_I_H #define TAO_BUFFERED_ONEWAYS_TEST_I_H #include "testS.h" class test_i : public POA_test { // = TITLE // Simple implementation. // public: test_i (CORBA::ORB_ptr orb); // ctor. // = The test interface methods. void method (CORBA::ULong request_number TAO_ENV_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_; // The ORB. }; #endif /* TAO_BUFFERED_ONEWAYS_TEST_I_H */