mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
Imported MaNGOS revision 6767 from http://mangos.svn.sourceforge.net/svnroot/mangos/trunk/
This commit is contained in:
parent
d767495d5b
commit
800ee76535
3322 changed files with 903437 additions and 0 deletions
38
dep/ACE_wrappers/ace/Reactor_Notification_Strategy.cpp
Normal file
38
dep/ACE_wrappers/ace/Reactor_Notification_Strategy.cpp
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#include "ace/Reactor_Notification_Strategy.h"
|
||||
#include "ace/Reactor.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Reactor_Notification_Strategy.inl"
|
||||
#endif /* __ACE_INLINE __ */
|
||||
|
||||
ACE_RCSID(ace, Reactor_Notification_Strategy, "$Id: Reactor_Notification_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $")
|
||||
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue