summaryrefslogtreecommitdiff
path: root/apps/JAWS/PROTOTYPE/HTTP_10_Request.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/PROTOTYPE/HTTP_10_Request.h')
-rw-r--r--apps/JAWS/PROTOTYPE/HTTP_10_Request.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/apps/JAWS/PROTOTYPE/HTTP_10_Request.h b/apps/JAWS/PROTOTYPE/HTTP_10_Request.h
deleted file mode 100644
index c6b204abe98..00000000000
--- a/apps/JAWS/PROTOTYPE/HTTP_10_Request.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- c++ -*-
-// $Id$
-
-#ifndef JAWS_HTTP_10_REQUEST_H
-#define JAWS_HTTP_10_REQUEST_H
-
-#include "HTTPU/http_request.h"
-
-
-class JAWS_HTTP_10_Request : public HTTP_Request, public HTTP_HCodes
-{
-public:
-
- JAWS_HTTP_10_Request (void);
- ~JAWS_HTTP_10_Request (void);
-
- int type (void) const;
- const char * method (void) const;
- const char * uri (void) const;
- const char * version (void) const;
-
- const char * path (void) const;
- void path (const char *);
- void set_status (int);
-
-private:
-
- char *path_;
-};
-
-#endif /* JAWS_HTTP_10_REQUEST_H */