mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 14:46:24 +00:00
First Commit
For Azeroth!
This commit is contained in:
26
dep/acelite/ace/Method_Request.cpp
Normal file
26
dep/acelite/ace/Method_Request.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include "ace/Method_Request.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_Method_Request::ACE_Method_Request (unsigned long prio)
|
||||
: priority_ (prio)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_Method_Request::~ACE_Method_Request (void)
|
||||
{
|
||||
}
|
||||
|
||||
unsigned long
|
||||
ACE_Method_Request::priority (void) const
|
||||
{
|
||||
return this->priority_;
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Method_Request::priority (unsigned long prio)
|
||||
{
|
||||
this->priority_ = prio;
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Reference in New Issue
Block a user