summaryrefslogtreecommitdiff
path: root/TAO/tests/Typedef_String_Array/testImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Typedef_String_Array/testImpl.h')
-rw-r--r--TAO/tests/Typedef_String_Array/testImpl.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/TAO/tests/Typedef_String_Array/testImpl.h b/TAO/tests/Typedef_String_Array/testImpl.h
new file mode 100644
index 00000000000..acbd61ef1cc
--- /dev/null
+++ b/TAO/tests/Typedef_String_Array/testImpl.h
@@ -0,0 +1,14 @@
+// $Id$
+
+#include "testS.h"
+
+class TestImpl: public POA_SimpleStrings
+{
+public:
+ TestImpl(CORBA::ORB_ptr orb);
+
+ virtual void get_strings (ArrayOfString_out strings);
+
+private:
+ CORBA::ORB_var orb_;
+};