blob: 9f4eb0d244f54df9e25ab65774ed03d133262d2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// -*- c++ -*-
// $Id$
#if !defined (ACE_HAS_INLINED_OSCALLS)
# undef ACE_INLINE
# define ACE_INLINE
#endif /* ACE_HAS_INLINED_OSCALLS */
ACE_INLINE
HTTP_Response::HTTP_Response (void)
{
}
ACE_INLINE
HTTP_Response::~HTTP_Response (void)
{
}
ACE_INLINE Parse_HTTP_Response *
HTTP_Response::response_line (void)
{
return &(this->response_);
}
|