diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-04-10 17:44:16 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-04-10 17:44:16 +0000 |
commit | 229673fc49bb56c3f1207cb82c01f8914850c287 (patch) | |
tree | 1081fc9b38d9ab63244fa71ae0320de03e56a427 /ace/Method_Request.cpp | |
parent | 684aee545e53cd775175481dd38b306449c92fd7 (diff) | |
download | ATCD-229673fc49bb56c3f1207cb82c01f8914850c287.tar.gz |
ChangeLogTag:Wed Apr 10 10:40:36 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace/Method_Request.cpp')
-rw-r--r-- | ace/Method_Request.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/ace/Method_Request.cpp b/ace/Method_Request.cpp index 003d5acc4f7..3215e1042d2 100644 --- a/ace/Method_Request.cpp +++ b/ace/Method_Request.cpp @@ -1,11 +1,10 @@ -// Method_Request.cpp -// $Id$ - #include "ace/Method_Request.h" -ACE_RCSID(ace, Method_Request, "$Id$") +ACE_RCSID (ace, + Method_Request, + "$Id$") -ACE_Method_Request::ACE_Method_Request (u_long prio) +ACE_Method_Request::ACE_Method_Request (unsigned long prio) : priority_ (prio) { } @@ -14,14 +13,14 @@ ACE_Method_Request::~ACE_Method_Request (void) { } -u_long +unsigned long ACE_Method_Request::priority (void) const { return this->priority_; } void -ACE_Method_Request::priority (u_long prio) +ACE_Method_Request::priority (unsigned long prio) { this->priority_ = prio; } |