Correct feature names
[ACE_TAO.git] / ACE / ace / Notification_Strategy.inl
blobf1c1598d0b482c21823953fbe001054437856d42
1 // -*- C++ -*-
2 //
3 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_INLINE ACE_Event_Handler *
6 ACE_Notification_Strategy::event_handler (void)
8   return eh_;
11 ACE_INLINE void
12 ACE_Notification_Strategy::event_handler (ACE_Event_Handler *eh)
14   this->eh_ = eh;
17 ACE_INLINE ACE_Reactor_Mask
18 ACE_Notification_Strategy::mask (void) const
20   return mask_;
23 ACE_INLINE void
24 ACE_Notification_Strategy::mask (ACE_Reactor_Mask m)
26   this->mask_ = m;
29 ACE_END_VERSIONED_NAMESPACE_DECL