summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3276_Regression/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3276_Regression/test_i.h')
-rw-r--r--TAO/tests/Bug_3276_Regression/test_i.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3276_Regression/test_i.h b/TAO/tests/Bug_3276_Regression/test_i.h
new file mode 100644
index 00000000000..b301f1f6945
--- /dev/null
+++ b/TAO/tests/Bug_3276_Regression/test_i.h
@@ -0,0 +1,22 @@
+// $Id$
+
+#ifndef _TEST_I_H_
+#define _TEST_I_H_
+
+#include "testS.h"
+
+class Simple_Server_i : public POA_Simple_Server
+{
+public:
+ Simple_Server_i (CORBA::ORB_ptr orb);
+ // ctor
+
+ virtual void remote_call ();
+
+ virtual void shutdown ();
+
+private:
+ CORBA::ORB_var orb_;
+};
+
+#endif /* _TEST_I_H_ */