summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/Orbix/orbix_marshal_server.i
blob: f6c5fe36fd39dc9e5b789d72156c886df62e9b87 (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
// constructor
ACE_INLINE
Orbix_Marshal_Server_Proxy::Orbix_Marshal_Server_Proxy (void)
  : orb_ (0),
    boa_ (0),
    ssi_ (0),
    dsi_ (0)
{
}

// destructor
ACE_INLINE
Orbix_Marshal_Server_Proxy::~Orbix_Marshal_Server_Proxy (void)
{
  // releasing order is important

  // release the impl
  delete ssi_;
  delete dsi_;

  // release the BOA
  CORBA::release (boa_);

  // release the ORB
  CORBA::release (orb_);
}