summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Generic_Servant/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/Generic_Servant/test_i.h')
-rw-r--r--TAO/examples/POA/Generic_Servant/test_i.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/TAO/examples/POA/Generic_Servant/test_i.h b/TAO/examples/POA/Generic_Servant/test_i.h
new file mode 100644
index 00000000000..3a6a4c96889
--- /dev/null
+++ b/TAO/examples/POA/Generic_Servant/test_i.h
@@ -0,0 +1,60 @@
+// $Id$
+//=============================================================================
+//
+//
+// = FILENAME
+// test_i.h
+//
+// = DESCRIPTION
+// Defines test_i class for the test interface
+//
+// = AUTHOR
+// Irfan Pyarali
+//
+//=============================================================================
+
+#include "testS.h"
+
+class GENERIC_SERVANT_Export test_i : public POA_test
+{
+public:
+ test_i (CORBA::ORB_ptr orb,
+ PortableServer::POA_ptr poa);
+ // Constructor - takes a POA and a value parameter
+
+ PortableServer::POA_ptr _default_POA (ACE_ENV_SINGLE_ARG_DECL);
+ // Returns the Default POA of this servant
+
+ void method (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ // A twoway operation.
+
+ void oneway_method (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ // A oneway operation.
+
+ void timed_method (CORBA::ULong timeout
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ // A timed twoway operation.
+
+ void timed_oneway_method (CORBA::ULong timeout
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ // A timed twoway operation.
+
+ void shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ // Shutdown the ORB
+
+ void sleep (CORBA::ULong timeout,
+ const char *operation);
+ // Sleep for some time.
+
+protected:
+ CORBA::ORB_var orb_;
+ // Our ORB.
+
+ PortableServer::POA_var poa_;
+ // Our POA.
+};