summaryrefslogtreecommitdiff
path: root/TAO/tao/poa.i
blob: 80a1e0ba437c58f8500084eb577a72c1258a1b10 (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
// This may look like C, but it's really -*- C++ -*-

// CORBA dup/release build on top of COM's (why not).

ACE_INLINE void
CORBA::release (CORBA::POA_ptr obj)
{
  if (obj)
    obj->Release ();
}

#if 0
ACE_INLINE CORBA::Boolean
CORBA_POA::shutting_down (void)
{
  return do_exit_;
}
#endif /* 0 */

ACE_INLINE CORBA::ORB_ptr
CORBA_POA::orb (void) const
{
  return orb_;
}