00001 // -*- C++ -*- 00002 // 00003 //$Id: Notification_Strategy.inl 69051 2005-10-28 16:14:56Z ossama $ 00004 00005 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE ACE_Event_Handler * 00008 ACE_Notification_Strategy::event_handler (void) 00009 { 00010 return eh_; 00011 } 00012 00013 ACE_INLINE void 00014 ACE_Notification_Strategy::event_handler (ACE_Event_Handler *eh) 00015 { 00016 this->eh_ = eh; 00017 } 00018 00019 ACE_INLINE ACE_Reactor_Mask 00020 ACE_Notification_Strategy::mask (void) const 00021 { 00022 return mask_; 00023 } 00024 00025 ACE_INLINE void 00026 ACE_Notification_Strategy::mask (ACE_Reactor_Mask m) 00027 { 00028 this->mask_ = m; 00029 } 00030 00031 ACE_END_VERSIONED_NAMESPACE_DECL