blob: 8e1c67591fe1af8f9357520db46b4a93eb82be9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// $Id$
#include "tao/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)
: reply_status_ (100) // Just an invalid reply status.
{
}
// Destructor.
TAO_Reply_Dispatcher::~TAO_Reply_Dispatcher (void)
{
}
|