Initial Patch of Auction House bot rev. 135
[auctionmangos.git] / dep / ACE_wrappers / ace / Reactor_Notification_Strategy.cpp
blobca09498ece8ba16e17d110f46430b4de21098cb1
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_RCSID(ace, Reactor_Notification_Strategy, "$Id: Reactor_Notification_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $")
10 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
12 ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
13 ACE_Reactor *reactor,
14 ACE_Event_Handler *eh,
15 ACE_Reactor_Mask mask)
16 : ACE_Notification_Strategy (eh, mask),
17 reactor_ (reactor)
21 ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy (void)
25 int
26 ACE_Reactor_Notification_Strategy::notify (void)
28 return this->reactor_->notify (this->eh_, this->mask_);
31 int
32 ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler *eh,
33 ACE_Reactor_Mask mask)
35 return this->reactor_->notify (eh, mask);
38 ACE_END_VERSIONED_NAMESPACE_DECL