summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h')
-rw-r--r--TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h b/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h
new file mode 100644
index 00000000000..a7f76261396
--- /dev/null
+++ b/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.h
@@ -0,0 +1,21 @@
+//
+// $Id$
+//
+
+#include "TestS.h"
+
+class MyInterfaceImpl
+ : public virtual POA_MyInterface
+{
+ public:
+ MyInterfaceImpl (CORBA::ORB_ptr orb);
+
+ static const char* my_string;
+
+ // = The skeleton methods
+ virtual CORBA::Boolean myMethod (const char* stringParam ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+};