summaryrefslogtreecommitdiff
path: root/TAO/tests/IORTable_Locator/simple_test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IORTable_Locator/simple_test_i.h')
-rw-r--r--TAO/tests/IORTable_Locator/simple_test_i.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/tests/IORTable_Locator/simple_test_i.h b/TAO/tests/IORTable_Locator/simple_test_i.h
new file mode 100644
index 00000000000..0a5f17eeeda
--- /dev/null
+++ b/TAO/tests/IORTable_Locator/simple_test_i.h
@@ -0,0 +1,26 @@
+//
+// $Id$
+//
+
+#ifndef HELLO_H
+#define HELLO_H
+
+#include "simple_testS.h"
+
+class Simple_Test_i
+ : public virtual POA_simple::SimpleTest_T
+{
+public:
+ /// Constructor
+ Simple_Test_i (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual void shutdown (void);
+
+private:
+ /// Use an ORB reference to convert strings to objects and shutdown
+ /// the application.
+ CORBA::ORB_var orb_;
+};
+
+#endif /* HELLO_H */