summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/TAO/tao_marshal_server.i
blob: 446b96cf46860f7e82b0a11b19fa5845cedeff75 (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
// $Id$

// constructor
ACE_INLINE
Tao_Marshal_Server_Proxy::Tao_Marshal_Server_Proxy (void)
  : orb_ (0),
    boa_ (0),
    ssi_ (0),
    dsi_ (0)
{
}

// destructor
ACE_INLINE
Tao_Marshal_Server_Proxy::~Tao_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_);
}