summaryrefslogtreecommitdiff
path: root/TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h')
-rw-r--r--TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h b/TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h
new file mode 100644
index 00000000000..573d6c55b33
--- /dev/null
+++ b/TAO/tests/Dynamic_TP/ORB_ThreadPool/Test_i.h
@@ -0,0 +1,29 @@
+//
+// $Id$
+//
+
+#ifndef TEST_I_H
+#define TEST_I_H
+#include /**/ "ace/pre.h"
+
+#include "TestS.h"
+
+/// Implement the Test::Sleeper interface
+class Test_i : public virtual POA_Test::Sleeper
+{
+public:
+ /// Constructor
+ Test_i (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual void delay (void);
+
+ virtual void shutdown (void);
+
+private:
+ CORBA::ORB_var orb_;
+
+};
+
+#include /**/ "ace/post.h"
+#endif /* TEST_I_H */