summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h')
-rw-r--r--ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h b/ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h
new file mode 100644
index 00000000000..6a8e13412fe
--- /dev/null
+++ b/ACE/TAO/tests/Timed_Buffered_Oneways/test_i.h
@@ -0,0 +1,46 @@
+// -*- C++ -*-
+// $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,
+ CORBA::Long start_time,
+ const test::data &,
+ CORBA::ULong work);
+
+ void flush (void);
+
+ void shutdown (CORBA::Long start_time);
+
+private:
+ CORBA::ORB_var orb_;
+ // The ORB.
+};
+
+#endif /* TAO_TIMED_BUFFERED_ONEWAYS_TEST_I_H */