blob: 14843a741a0ea01382ac0abed699bbf23b1529ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// $Id$
ACE_INLINE int
TAO_Notify_ProxyConsumer::is_connected (void)
{
return supplier_ == 0 ? 0 : 1;
}
ACE_INLINE TAO_Notify_Supplier*
TAO_Notify_ProxyConsumer::supplier (void)
{
return this->supplier_;
}
ACE_INLINE TAO_Notify_SupplierAdmin*
TAO_Notify_ProxyConsumer::supplier_admin (void)
{
return this->supplier_admin_;
}
|