blob: 9f8146c7bd7293d8041699e0b8ebfdae1e6a59a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
#include "Reply_Dispatcher.h"
ACE_RCSID (tao,
Reply_Dispatcher,
"$Id$")
#if !defined (__ACE_INLINE__)
#include "tao/Reply_Dispatcher.i"
#endif /* __ACE_INLINE__ */
// Constructor.
TAO_Reply_Dispatcher::TAO_Reply_Dispatcher (void)
// Just an invalid reply status.
: reply_status_ (100)
{
}
// Destructor.
TAO_Reply_Dispatcher::~TAO_Reply_Dispatcher (void)
{
}
|