summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h')
-rw-r--r--ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h b/ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h
new file mode 100644
index 00000000000..5b9bb5ed552
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test_i.h
@@ -0,0 +1,51 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file test_i.h
+ *
+ * $Id$
+ *
+ * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
+ */
+//=============================================================================
+#ifndef TEST_I_H
+#define TEST_I_H
+
+#include "testS.h"
+
+/**
+ * @class test_i
+ *
+ * @brief Simple test class.
+ *
+ * This class implements the "test" interface used in this test.
+ */
+class test_i : public virtual POA_ForwardRequestTest::test
+{
+public:
+
+ /// Constructor.
+ test_i (CORBA::Short num,
+ CORBA::ORB_ptr orb);
+
+ /// Destructor.
+ ~test_i (void);
+
+ /// Return the number assigned to this object.
+ virtual CORBA::Short number (void);
+
+ /// Shutdown the ORB.
+ virtual void shutdown (void);
+
+private:
+
+ /// The number assigned to this object.
+ CORBA::Short number_;
+
+ /// Pseudo-reference to the ORB.
+ CORBA::ORB_var orb_;
+
+};
+
+#endif /* TEST_I_H */