summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-12-26 19:19:53 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-12-26 19:19:53 +0000
commit1709f15cd9f114f4219056db884c2bdaecee4b57 (patch)
tree2d6a81979750f367888502ce6f7a428b09ca4f9d /TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp
parent70dded57e51e9c39106f2d585125aea91aae59d2 (diff)
downloadATCD-1709f15cd9f114f4219056db884c2bdaecee4b57.tar.gz
ChangeLogTag:Tue Dec 26 13:40:50 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp b/TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp
new file mode 100644
index 00000000000..f80354bf8d0
--- /dev/null
+++ b/TAO/tests/Portable_Interceptors/IORInterceptor/test_i.cpp
@@ -0,0 +1,21 @@
+// -*- C++ -*-
+
+#include "test_i.h"
+
+ACE_RCSID (IORInterceptors,
+ test_i,
+ "$Id$")
+
+test_i::test_i (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+void
+test_i::shutdown (CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ ACE_DEBUG ((LM_DEBUG,
+ "\"test_i\" is shutting down.\n"));
+ this->orb_->shutdown (0, ACE_TRY_ENV);
+}