summaryrefslogtreecommitdiff
path: root/TAO/tests/InterOp-Naming/INS_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/InterOp-Naming/INS_i.cpp')
-rw-r--r--TAO/tests/InterOp-Naming/INS_i.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/tests/InterOp-Naming/INS_i.cpp b/TAO/tests/InterOp-Naming/INS_i.cpp
deleted file mode 100644
index a3c0b51e25a..00000000000
--- a/TAO/tests/InterOp-Naming/INS_i.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-
-#include "INS_i.h"
-
-// Constructor
-
-INS_i::INS_i (void)
-{
- // no-op
-}
-
-// Destructor
-
-INS_i::~INS_i (void)
-{
-}
-
-// Set the ORB pointer.
-
-void
-INS_i::orb (CORBA::ORB_ptr o)
-{
- this->orb_ = CORBA::ORB::_duplicate (o);
-}
-
-char *
-INS_i::test_ins (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
-ACE_THROW_SPEC (( CORBA::SystemException ))
-{
- ACE_DEBUG ((LM_DEBUG,
- "Inside Operation\n"));
- return CORBA::string_dup ("Success");
-}