server/dep/ACE_wrappers/ace/Reactor_Notification_Strategy.cpp
Neo2003 23c920ca4b [10643] Update the ACE part we use to 5.8.2
Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
2010-10-25 20:36:51 +02:00

38 lines
929 B
C++

// $Id: Reactor_Notification_Strategy.cpp 91287 2010-08-05 10:30:49Z johnnyw $
#include "ace/Reactor_Notification_Strategy.h"
#include "ace/Reactor.h"
#if !defined (__ACE_INLINE__)
#include "ace/Reactor_Notification_Strategy.inl"
#endif /* __ACE_INLINE __ */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
ACE_Reactor *reactor,
ACE_Event_Handler *eh,
ACE_Reactor_Mask mask)
: ACE_Notification_Strategy (eh, mask),
reactor_ (reactor)
{
}
ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy (void)
{
}
int
ACE_Reactor_Notification_Strategy::notify (void)
{
return this->reactor_->notify (this->eh_, this->mask_);
}
int
ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler *eh,
ACE_Reactor_Mask mask)
{
return this->reactor_->notify (eh, mask);
}
ACE_END_VERSIONED_NAMESPACE_DECL