diff options
Diffstat (limited to 'TAO/tests/Abstract_Interface/test_i.h')
-rw-r--r-- | TAO/tests/Abstract_Interface/test_i.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/tests/Abstract_Interface/test_i.h b/TAO/tests/Abstract_Interface/test_i.h deleted file mode 100644 index b9af23803aa..00000000000 --- a/TAO/tests/Abstract_Interface/test_i.h +++ /dev/null @@ -1,40 +0,0 @@ -// $Id$ - -#ifndef TAO_TEST_I_H -#define TAO_TEST_I_H - -#include "testS.h" - -class foo_i : public virtual POA_foo -{ - virtual char * foo_op (const char * inarg - ACE_ENV_ARG_DECL_WITH_DEFAULTS) - ACE_THROW_SPEC (( - CORBA::SystemException, - BadInput - )); - - virtual char * base_op (const char * inarg - ACE_ENV_ARG_DECL_WITH_DEFAULTS) - ACE_THROW_SPEC (( - CORBA::SystemException, - BadInput - )); -}; - -class passer_i : public virtual POA_passer -{ - virtual void pass_ops (base_out outarg - ACE_ENV_ARG_DECL_WITH_DEFAULTS) - ACE_THROW_SPEC (( - CORBA::SystemException - )); - - virtual void pass_state (base_out outarg - ACE_ENV_ARG_DECL_WITH_DEFAULTS) - ACE_THROW_SPEC (( - CORBA::SystemException - )); -}; - -#endif /* TAO_TEST_I_H */ |