mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
Applied dep and realm updates
This commit is contained in:
parent
12257a5bc2
commit
5260602e28
2020 changed files with 39571 additions and 173090 deletions
27
dep/acelite/ace/Method_Request.cpp
Normal file
27
dep/acelite/ace/Method_Request.cpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// $Id: Method_Request.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $
|
||||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue