summaryrefslogtreecommitdiff
path: root/TAO/tests/ORT/ORT_test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORT/ORT_test_i.h')
-rw-r--r--TAO/tests/ORT/ORT_test_i.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/TAO/tests/ORT/ORT_test_i.h b/TAO/tests/ORT/ORT_test_i.h
new file mode 100644
index 00000000000..55aef41d1a9
--- /dev/null
+++ b/TAO/tests/ORT/ORT_test_i.h
@@ -0,0 +1,40 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file ORT_test_i.h
+ *
+ * $Id$
+ *
+ * Implementation header for the "server" IDL interface for the
+ * ORT example.
+ *
+ * @author Priyanka Gontla <gontla_p@ociweb.com>
+ */
+//=============================================================================
+
+
+#ifndef ORT_TEST_I_H
+#define ORT_TEST_I_H
+
+#include "ORT_testS.h"
+
+
+class ORT_test_i : public virtual POA_ObjectReferenceTemplate::ORT_test
+{
+public:
+
+ ORT_test_i (CORBA::ORB_ptr orb);
+
+ virtual CORBA::Boolean request_server (void);
+
+ virtual void shutdown (void);
+
+private:
+
+ CORBA::ORB_var orb_;
+
+};
+
+
+#endif /* ORT_TEST_I_H */