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