summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2503_Regression/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2503_Regression/test_i.cpp')
-rw-r--r--TAO/tests/Bug_2503_Regression/test_i.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/Bug_2503_Regression/test_i.cpp b/TAO/tests/Bug_2503_Regression/test_i.cpp
deleted file mode 100644
index c610f1d4768..00000000000
--- a/TAO/tests/Bug_2503_Regression/test_i.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-
-#include "tao/Utils/Servant_Var.h"
-
-test_i::
-test_i(CORBA::ORB_ptr orb)
-{
- this->orb_ = CORBA::ORB::_duplicate (orb);
-}
-
-void test_i::
-the_operation(CORBA::Long & x)
- throw(CORBA::SystemException)
-{
- x = 42;
-}
-
-char *
-test_i::
-create_and_activate_server()
-{
- TAO::Utils::Servant_Var<test_i> impl(
- new test_i (this->orb_.in ()));
-
- Test_var ref = impl->_this();
-
- return this->orb_->object_to_string(ref.in());
-}
-
-void
-test_i::shutdown (void)
- throw (CORBA::SystemException)
-{
- if (!CORBA::is_nil (this->orb_.in ()))
- this->orb_->shutdown (0);
-}