summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer.inl
blob: 1449e61150c025815cc09e85810eacee792bd0c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// -*- C++ -*-
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