// $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_THROW_SPEC (( CORBA::SystemException, BadInput )); virtual char * base_op (const char * inarg) ACE_THROW_SPEC (( CORBA::SystemException, BadInput )); }; class passer_i : public virtual POA_passer { virtual void pass_ops (base_out outarg) ACE_THROW_SPEC (( CORBA::SystemException )); virtual void pass_state (base_out outarg) ACE_THROW_SPEC (( CORBA::SystemException )); }; #endif /* TAO_TEST_I_H */