~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to ace/Method_Request.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "ace/Method_Request.h"
2
 
 
3
 
ACE_RCSID (ace,
4
 
           Method_Request,
5
 
           "Method_Request.cpp,v 4.5 2002/04/10 17:44:15 ossama Exp")
6
 
 
7
 
ACE_Method_Request::ACE_Method_Request (unsigned long prio)
8
 
  : priority_ (prio)
9
 
{
10
 
}
11
 
 
12
 
ACE_Method_Request::~ACE_Method_Request (void)
13
 
{
14
 
}
15
 
 
16
 
unsigned long
17
 
ACE_Method_Request::priority (void) const
18
 
{
19
 
  return this->priority_;
20
 
}
21
 
 
22
 
void
23
 
ACE_Method_Request::priority (unsigned long prio)
24
 
{
25
 
  this->priority_ = prio;
26
 
}