summaryrefslogtreecommitdiff
path: root/tests/OBV/Forward/Test_impl.cpp
blob: 78d97b39cf713494cc4a835f7472dd200cd09796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// $Id$

#include "Test_impl.h"
#include "TreeBaseC.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_var old_right = bn->right ();
  BaseNode_var old_left = bn->left ();

  CORBA::add_ref (old_right.in ());
  CORBA::add_ref (old_left.in ());

  bn->right (old_left.in ());
  bn->left (old_right.in ());
}

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);
}