diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:12 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:12 +0000 |
commit | 42195eb2ff28c597dd9d2eeddd05ea4c7b146af8 (patch) | |
tree | 7b65e7ab6e49247e7ee7aec0245f51dc2ca129af /methods/http.h | |
parent | 9deebc6aae1515542bed788b52ec8c366ca9748c (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-27 23:53:55 GMT
G++3 fixes from Randolph
Diffstat (limited to 'methods/http.h')
-rw-r--r-- | methods/http.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/methods/http.h b/methods/http.h index 07a65d702..f5899410b 100644 --- a/methods/http.h +++ b/methods/http.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- -// Description /*{{{*/// $Id: http.h,v 1.10 2001/03/06 07:15:29 jgg Exp $ -// $Id: http.h,v 1.10 2001/03/06 07:15:29 jgg Exp $ +// Description /*{{{*/// $Id: http.h,v 1.11 2001/05/27 23:53:56 jgg Exp $ +// $Id: http.h,v 1.11 2001/05/27 23:53:56 jgg Exp $ /* ###################################################################### HTTP Aquire Method - This is the HTTP aquire method for APT. @@ -13,6 +13,11 @@ #define MAXLEN 360 +#include <iostream> + +using std::cout; +using std::endl; + class HttpMethod; class CircleBuf |