summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h')
-rw-r--r--TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h b/TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h
new file mode 100644
index 00000000000..41c11b90668
--- /dev/null
+++ b/TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.h
@@ -0,0 +1,19 @@
+// $Id$
+
+#ifndef TEST_IMPL_HPP
+#define TEST_IMPL_HPP
+
+#include "TestS.h"
+
+class Server_impl : public virtual POA_server
+{
+public:
+ Server_impl (CORBA::ORB_ptr orb);
+ virtual void method (CORBA::Object_ptr object) throw (CORBA::SystemException);
+ virtual void shutdown () throw (CORBA::SystemException);
+
+private:
+ CORBA::ORB_var orb_;
+};
+
+#endif /* TEST_IMPL_HPP */