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.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/tests/InterOp-Naming/INS_i.cpp b/TAO/tests/InterOp-Naming/INS_i.cpp
deleted file mode 100644
index 9e0e07db934..00000000000
--- a/TAO/tests/InterOp-Naming/INS_i.cpp
+++ /dev/null
@@ -1,35 +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 (CORBA::Environment &env)
-ACE_THROW_SPEC (( CORBA::SystemException ))
-{
- ACE_UNUSED_ARG (env);
-
- ACE_DEBUG ((LM_DEBUG,
- "Inside Operation\n"));
- return CORBA::string_dup ("Success");
-}