summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Forward/Test_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Forward/Test_impl.cpp')
-rw-r--r--TAO/tests/OBV/Forward/Test_impl.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/tests/OBV/Forward/Test_impl.cpp b/TAO/tests/OBV/Forward/Test_impl.cpp
new file mode 100644
index 00000000000..c55d885f0a4
--- /dev/null
+++ b/TAO/tests/OBV/Forward/Test_impl.cpp
@@ -0,0 +1,47 @@
+// $Id$
+
+#include "Test_impl.h"
+#include "TreeBaseC.h"
+
+ACE_RCSID(Forward, Test_impl, "$Id$")
+
+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)
+{
+ if (tc != 0)
+ {
+ reflect_node (tc-> root());
+ tc->_add_ref ();
+ }
+ return tc;
+}
+
+void
+Test_impl::shutdown (void)
+{
+ this->orb_->shutdown (0);
+}