summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h')
-rw-r--r--TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h b/TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h
new file mode 100644
index 00000000000..fae8f7d2b8d
--- /dev/null
+++ b/TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h
@@ -0,0 +1,21 @@
+// $Id$
+
+#include "tao/ORB.h"
+#include "TestS.h"
+
+class TestImpl
+ : public virtual POA_Test
+{
+public:
+ TestImpl (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual void myMethod (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+};