blob: ccf61f981f214c91228bfe21ff06a79ae4aad5a1 (
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
|
// -*- C++ -*-
// $Id$
namespace TAO
{
ACE_INLINE
Reply_Guard::Reply_Guard (Invocation_Base *b,
Invocation_Status s)
: invocation_ (b)
, status_ (s)
{
}
ACE_INLINE
Reply_Guard::~Reply_Guard (void)
{
this->invocation_->reply_received (this->status_);
}
ACE_INLINE void
Reply_Guard::set_status (Invocation_Status s)
{
this->status_ = s;
}
}
|