summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/Orbix/orbix_marshal_client.i
blob: a99b72db952d993a8e213817eaa9825750163a34 (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
Orbix_Marshal_Client_Proxy::Orbix_Marshal_Client_Proxy (void)
  : orb_ (CORBA::ORB::_nil ()),
    ref_ (0)
{
}

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

  // release the reference
  CORBA::release (ref_);

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