Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Reactor_Notification_Strategy.cpp
blobec3c95f7e3ba92936466c384940e7c9cf64d2ee7
1 #include "ace/Reactor_Notification_Strategy.h"
2 #include "ace/Reactor.h"
4 #if !defined (__ACE_INLINE__)
5 #include "ace/Reactor_Notification_Strategy.inl"
6 #endif /* __ACE_INLINE __ */
8 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
11 ACE_Reactor *reactor,
12 ACE_Event_Handler *eh,
13 ACE_Reactor_Mask mask)
14 : ACE_Notification_Strategy (eh, mask),
15 reactor_ (reactor)
19 ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy ()
23 int
24 ACE_Reactor_Notification_Strategy::notify ()
26 return this->reactor_->notify (this->eh_, this->mask_);
29 int
30 ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler *eh,
31 ACE_Reactor_Mask mask)
33 return this->reactor_->notify (eh, mask);
36 ACE_END_VERSIONED_NAMESPACE_DECL