mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +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
30
dep/ACE_wrappers/ace/Method_Request.cpp
Normal file
30
dep/ACE_wrappers/ace/Method_Request.cpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#include "ace/Method_Request.h"
|
||||
|
||||
ACE_RCSID (ace,
|
||||
Method_Request,
|
||||
"$Id: Method_Request.cpp 80826 2008-03-04 14:51:23Z wotte $")
|
||||
|
||||
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