new parameter on virtual method

This commit is contained in:
David Rose 2006-02-20 18:31:59 +00:00
parent 44aa0c09c6
commit 2cdd4644f3
2 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ will_close_connection() const {
// once for a particular HTTPChannel. // once for a particular HTTPChannel.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
istream *HTTPChannel:: istream *HTTPChannel::
open_read_file() const { open_read_file(bool auto_unwrap) const {
return ((HTTPChannel *)this)->read_body(); return ((HTTPChannel *)this)->read_body();
} }

View File

@ -72,7 +72,7 @@ public:
virtual Filename get_filename() const; virtual Filename get_filename() const;
virtual bool is_regular_file() const; virtual bool is_regular_file() const;
virtual istream *open_read_file() const; virtual istream *open_read_file(bool auto_unwrap) const;
void close_read_file(istream *stream) const; void close_read_file(istream *stream) const;
bool will_close_connection() const; bool will_close_connection() const;