summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_Timeout/Sleep_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/MT_Timeout/Sleep_Service.h')
-rw-r--r--TAO/tests/MT_Timeout/Sleep_Service.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/tests/MT_Timeout/Sleep_Service.h b/TAO/tests/MT_Timeout/Sleep_Service.h
new file mode 100644
index 00000000000..9a360fa9420
--- /dev/null
+++ b/TAO/tests/MT_Timeout/Sleep_Service.h
@@ -0,0 +1,31 @@
+//
+// $Id$
+//
+
+#ifndef SLEEP_SERVICE_H
+#define SLEEP_SERVICE_H
+#include /**/ "ace/pre.h"
+
+#include "TestS.h"
+
+/// Implement the Test::Sleep_Service interface
+class Sleep_Service
+ : public virtual POA_Test::Sleep_Service
+{
+public:
+ /// Constructor
+ Sleep_Service (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual void go_to_sleep (CORBA::ULong microseconds);
+
+ virtual void shutdown (void);
+
+private:
+ /// Use an ORB reference to conver strings to objects and shutdown
+ /// the application.
+ CORBA::ORB_var orb_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* SLEEP_SERVICE_H */