summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer.inl
blob: b2b0c8bb5c887fb1dede2b1dd6127a1b31e425ae (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
25
26
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE bool
TAO_Notify_ProxyConsumer::is_connected (void) const
{
  return (this->supplier_.get() != 0);
}

ACE_INLINE TAO_Notify_Supplier*
TAO_Notify_ProxyConsumer::supplier (void)
{
  return this->supplier_.get();
}

ACE_INLINE TAO_Notify_SupplierAdmin&
TAO_Notify_ProxyConsumer::supplier_admin (void)
{
  ACE_ASSERT( this->supplier_admin_.get() != 0 );
  return *this->supplier_admin_;
}

TAO_END_VERSIONED_NAMESPACE_DECL