mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-17 01:04:34 +00:00
restructured repository based on following standards:
https://github.com/HW-Core/directory-structure
This commit is contained in:
26
modules/dep/acelite/ace/Method_Request.cpp
Normal file
26
modules/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