diff options
Diffstat (limited to 'TAO/tests/Ondemand_Write/Hello.h')
-rw-r--r-- | TAO/tests/Ondemand_Write/Hello.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/TAO/tests/Ondemand_Write/Hello.h b/TAO/tests/Ondemand_Write/Hello.h new file mode 100644 index 00000000000..17f387990e2 --- /dev/null +++ b/TAO/tests/Ondemand_Write/Hello.h @@ -0,0 +1,37 @@ +// +// $Id$ +// + +#ifndef HELLO_H +#define HELLO_H +#include /**/ "ace/pre.h" + +#include "TestS.h" + +/// Implement the Test::Hello interface +class Hello + : public virtual POA_Test::Hello +{ +public: + /// Constructor + Hello (CORBA::ORB_ptr orb); + + // = The skeleton methods + virtual char * get_string ( + ::CORBA::Long valuea, + const char * inputa, + ::CORBA::Long valueb, + const char * inputb) + ACE_THROW_SPEC ((CORBA::SystemException)); + + virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL) + ACE_THROW_SPEC ((CORBA::SystemException)); + +private: + /// Use an ORB reference to conver strings to objects and shutdown + /// the application. + CORBA::ORB_var orb_; +}; + +#include /**/ "ace/post.h" +#endif /* HELLO_H */ |