summaryrefslogtreecommitdiff
path: root/TAO/tests/Leader_Followers/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Leader_Followers/test_i.h')
-rw-r--r--TAO/tests/Leader_Followers/test_i.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tests/Leader_Followers/test_i.h b/TAO/tests/Leader_Followers/test_i.h
new file mode 100644
index 00000000000..b884d8b517f
--- /dev/null
+++ b/TAO/tests/Leader_Followers/test_i.h
@@ -0,0 +1,38 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Leader_Followers/
+//
+// = FILENAME
+// test_i.h
+//
+// = AUTHOR
+// Irfan Pyarali
+//
+// ============================================================================
+
+#include "testS.h"
+
+class test_i : public POA_test
+{
+ // = TITLE
+ // Simple test implementation.
+ //
+public:
+ test_i (CORBA::ORB_ptr orb);
+ // ctor.
+
+ // = The test interface methods.
+ CORBA::ULong method (CORBA::ULong work
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+ // The ORB.
+};