summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp')
-rw-r--r--trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp b/trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp
new file mode 100644
index 00000000000..03b0440a092
--- /dev/null
+++ b/trunk/TAO/tests/OBV/Collocated/Forward/Test_impl.cpp
@@ -0,0 +1,47 @@
+// $Id$
+
+#include "Test_impl.h"
+
+Test_impl::Test_impl (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+
+void
+reflect_node (BaseNode* bn)
+{
+ if(bn == 0) return;
+
+ reflect_node (bn->left ());
+ reflect_node (bn->right ());
+
+ BaseNode *old_right = bn->right ();
+ BaseNode *old_left = bn->left ();
+
+ CORBA::add_ref (old_right);
+ CORBA::add_ref (old_left);
+
+ bn->right (old_left);
+ bn->left (old_right);
+}
+
+TreeController *
+Test_impl::reflect (TreeController * tc
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ if (tc != 0)
+ {
+ reflect_node (tc-> root());
+ tc->_add_ref ();
+ }
+ return tc;
+}
+
+void
+Test_impl::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+}