summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/TAO/tao_marshal_client.i
blob: 5fcdc2e209fd0188a16631681a572e3b28ebac24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$


ACE_INLINE
Tao_Marshal_Client_Proxy::Tao_Marshal_Client_Proxy (void)
  : orb_ (0),
    ref_ (0)
{
}

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

  // release the reference
  CORBA_release (ref_);

  // release the ORB
  CORBA_release (orb_);
}