mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
27 lines
413 B
C++
27 lines
413 B
C++
#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
|