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

« back to all changes in this revision

Viewing changes to TAO/tao/Synch_Invocation.inl

  • 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
 
// -*- C++ -*-
2
 
// Synch_Invocation.inl,v 1.2 2003/10/28 18:29:20 bala Exp
3
 
namespace TAO
4
 
{
5
 
  ACE_INLINE
6
 
  Reply_Guard::Reply_Guard (Invocation_Base *b,
7
 
                            Invocation_Status s)
8
 
    : invocation_ (b)
9
 
    , status_ (s)
10
 
  {
11
 
  }
12
 
 
13
 
  ACE_INLINE
14
 
  Reply_Guard::~Reply_Guard (void)
15
 
  {
16
 
    this->invocation_->reply_received (this->status_);
17
 
  }
18
 
 
19
 
  ACE_INLINE void
20
 
  Reply_Guard::set_status (Invocation_Status s)
21
 
  {
22
 
    this->status_ = s;
23
 
  }
24
 
}