Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Notification_Strategy.inl
blobd566c334224a8ee5e7b399a56176b80f12cc393a
1 // -*- C++ -*-
2 //
3 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_INLINE ACE_Event_Handler *
6 ACE_Notification_Strategy::event_handler ()
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 () 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