summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_2503_Regression/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_2503_Regression/test_i.h')
-rw-r--r--ACE/TAO/tests/Bug_2503_Regression/test_i.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_2503_Regression/test_i.h b/ACE/TAO/tests/Bug_2503_Regression/test_i.h
new file mode 100644
index 00000000000..9d5efcf6562
--- /dev/null
+++ b/ACE/TAO/tests/Bug_2503_Regression/test_i.h
@@ -0,0 +1,23 @@
+// $Id$
+
+#ifndef test_i_h
+#define test_i_h
+
+#include "TestS.h"
+
+class test_i
+ : public POA_Test
+{
+public:
+ test_i(CORBA::ORB_ptr);
+
+ virtual void the_operation(CORBA::Long & x);
+
+ virtual void shutdown (void);
+
+ char * create_and_activate_server(void);
+private:
+ CORBA::ORB_var orb_;
+};
+
+#endif // test_i_h