summaryrefslogtreecommitdiff
path: root/ace/Method_Request.cpp
blob: 22b5d64873a7f0a422cd5c81f2457acc1e43e65b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Method_Request.cpp
// $Id$

#include "ace/Method_Request.h"

ACE_RCSID(ace, Method_Request, "$Id$")

ACE_Method_Request::ACE_Method_Request (u_long prio)
  : priority_ (prio)
{
}

ACE_Method_Request::~ACE_Method_Request (void)
{
}

u_long
ACE_Method_Request::priority (void)
{
  return this->priority_;
}

void
ACE_Method_Request::priority (u_long prio)
{
  this->priority_ = prio;
}