Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / apps / JAWS2 / HTTPU / http_request.inl
blob5e4f3f43479b159414d35a9b4d4b0a4862d9f123
1 // -*- c++ -*-
2 #if !defined (ACE_HAS_INLINED_OSCALLS)
3 # undef ACE_INLINE
4 # define ACE_INLINE
5 #endif /* ACE_HAS_INLINED_OSCALLS */
7 ACE_INLINE
8 HTTP_Request::HTTP_Request ()
12 ACE_INLINE
13 HTTP_Request::~HTTP_Request ()
17 ACE_INLINE Parse_HTTP_Request *
18 HTTP_Request::request_line ()
20   return &(this->request_);
23 ACE_INLINE const Parse_HTTP_Request *
24 HTTP_Request::request_line () const
26   return &(this->request_);
29 ACE_INLINE HTTP_Parse_URL *
30 HTTP_Request::url ()
32   return &(this->url_);
35 ACE_INLINE void
36 HTTP_Request::set_status (int s)
38   this->status_ = s;