summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/InterOp-Naming/INS_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/InterOp-Naming/INS_i.h')
-rw-r--r--ACE/TAO/tests/InterOp-Naming/INS_i.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/ACE/TAO/tests/InterOp-Naming/INS_i.h b/ACE/TAO/tests/InterOp-Naming/INS_i.h
new file mode 100644
index 00000000000..6f24fbc2094
--- /dev/null
+++ b/ACE/TAO/tests/InterOp-Naming/INS_i.h
@@ -0,0 +1,50 @@
+// -*- C++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/InterOp-Naming
+//
+// = FILENAME
+// INS_i.h
+//
+// = DESCRIPTION
+// This class implements the INS interface.
+//
+// = AUTHOR
+// Vishal Kachroo <vishal@cs.wustl.edu>
+//
+// ============================================================================
+
+#ifndef INS_I_H
+#define INS_I_H
+
+#include "INSS.h"
+
+class INS_i : public POA_INS
+{
+
+public:
+ // = Initialization and termination methods.
+ INS_i (void);
+ // Constructor.
+
+ ~INS_i (void);
+ // Destructor.
+
+ char * test_ins (void);
+ // test the INS.
+
+ void orb (CORBA::ORB_ptr o);
+ // Set the ORB pointer.
+
+private:
+ CORBA::ORB_var orb_;
+ // ORB pointer.
+
+};
+
+#endif /* INS_I_H */
+
+