summaryrefslogtreecommitdiff
path: root/TAO/tests/InterOp-Naming/INS_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/InterOp-Naming/INS_i.h')
-rw-r--r--TAO/tests/InterOp-Naming/INS_i.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/TAO/tests/InterOp-Naming/INS_i.h b/TAO/tests/InterOp-Naming/INS_i.h
deleted file mode 100644
index c278b2030f8..00000000000
--- a/TAO/tests/InterOp-Naming/INS_i.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// -*- 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 (CORBA::Environment &env)
- ACE_THROW_SPEC (( CORBA::SystemException ));
- // test the INS.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
-
-private:
- CORBA::ORB_var orb_;
- // ORB pointer.
-
-};
-
-#endif /* INS_I_H */
-
-