summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/VisiBroker/visi_marshal_client.i
blob: fb8c58238481e5e19b337355958d6ff3a08db8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

ACE_INLINE
Visi_Marshal_Client_Proxy::Visi_Marshal_Client_Proxy (void)
  : orb_ (CORBA_ORB::_nil ()),
    ref_ (0)
{
}

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

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

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