summaryrefslogtreecommitdiff
path: root/TAO/tests/Timed_Buffered_Oneways/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Timed_Buffered_Oneways/test_i.h')
-rw-r--r--TAO/tests/Timed_Buffered_Oneways/test_i.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/tests/Timed_Buffered_Oneways/test_i.h b/TAO/tests/Timed_Buffered_Oneways/test_i.h
new file mode 100644
index 00000000000..19af9a8379f
--- /dev/null
+++ b/TAO/tests/Timed_Buffered_Oneways/test_i.h
@@ -0,0 +1,45 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Timed_Buffered_Oneways/
+//
+// = FILENAME
+// test_i.h
+//
+// = AUTHOR
+// Irfan Pyarali
+//
+// ============================================================================
+
+#ifndef TAO_TIMED_BUFFERED_ONEWAYS_TEST_I_H
+#define TAO_TIMED_BUFFERED_ONEWAYS_TEST_I_H
+
+#include "testS.h"
+
+class test_i : public POA_test
+{
+ // = TITLE
+ // Simple implementation.
+ //
+public:
+ test_i (CORBA::ORB_ptr orb);
+ // ctor.
+
+ // = The test interface methods.
+ void method (CORBA::ULong request_number,
+ const test::data &,
+ CORBA::ULong work,
+ CORBA::Environment &)
+ ACE_THROW_SPEC (());
+
+ void shutdown (CORBA::Environment &)
+ ACE_THROW_SPEC (());
+
+private:
+ CORBA::ORB_var orb_;
+ // The ORB.
+};
+
+#endif /* TAO_TIMED_BUFFERED_ONEWAYS_TEST_I_H */