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

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_);
}