mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
new parameter on virtual method
This commit is contained in:
parent
44aa0c09c6
commit
2cdd4644f3
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user