diff options
Diffstat (limited to 'TAO/tests/Bug_1020_Regression/Server_i.h')
-rw-r--r-- | TAO/tests/Bug_1020_Regression/Server_i.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1020_Regression/Server_i.h b/TAO/tests/Bug_1020_Regression/Server_i.h new file mode 100644 index 00000000000..75fb33dbdd0 --- /dev/null +++ b/TAO/tests/Bug_1020_Regression/Server_i.h @@ -0,0 +1,27 @@ +/** + * @file Server_i.h + * + * $Id$ + * + * @author Carlos O'Ryan <coryan@atdesk.com> + * + */ +#ifndef BUG_1020_REGRESSION_SERVER_I_H +#define BUG_1020_REGRESSION_SERVER_I_H + +#include "TestS.h" + +class Server : public POA_Test::Server +{ +public: + Server(CORBA::ORB_ptr orb); + + virtual void start_task(Test::Echo_ptr client + ACE_ENV_ARG_DECL_WITH_DEFAULTS) + ACE_THROW_SPEC((CORBA::SystemException)); + +private: + CORBA::ORB_var orb_; +}; + +#endif /* BUG_1020_REGRESSION_SERVER_I_H*/ |