summaryrefslogtreecommitdiff
path: root/apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i')
-rw-r--r--apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i49
1 files changed, 0 insertions, 49 deletions
diff --git a/apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i b/apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i
deleted file mode 100644
index 3ef87d48479..00000000000
--- a/apps/JAWS/PROTOTYPE/HTTPU/parse_http_request.i
+++ /dev/null
@@ -1,49 +0,0 @@
-// -*- c++ -*-
-// $Id$
-
-#if !defined (ACE_HAS_INLINED_OSCALLS)
-# undef ACE_INLINE
-# define ACE_INLINE
-#endif /* ACE_HAS_INLINED_OSCALLS */
-
-ACE_INLINE int
-Parse_HTTP_Request::method (void) const
-{
- return (int) *this->method_;
-}
-
-ACE_INLINE const char *
-Parse_HTTP_Request::method_str (void) const
-{
- return (const char *) *this->method_;
-}
-
-ACE_INLINE int
-Parse_HTTP_Request::major_version (void) const
-{
- return this->major_version_;
-}
-
-ACE_INLINE int
-Parse_HTTP_Request::minor_version (void) const
-{
- return this->minor_version_;
-}
-
-ACE_INLINE const char *
-Parse_HTTP_Request::version (void) const
-{
- return this->version_ ? this->version_ : "HTTP/0.9";
-}
-
-ACE_INLINE const char *
-Parse_HTTP_Request::url (void) const
-{
- return this->url_;
-}
-
-ACE_INLINE int
-Parse_HTTP_Request::error (void) const
-{
- return this->error_;
-}