make auto_unwrap a required parameter

This commit is contained in:
David Rose 2006-01-26 01:30:21 +00:00
parent 43a3b6a7a8
commit 9743b5276f
1 changed files with 3 additions and 3 deletions

View File

@ -82,12 +82,12 @@ PUBLISHED:
static VirtualFileSystem *get_global_ptr();
INLINE string read_file(const Filename &filename, bool auto_unwrap = false) const;
INLINE istream *open_read_file(const Filename &filename, bool auto_unwrap = false) const;
INLINE string read_file(const Filename &filename, bool auto_unwrap) const;
INLINE istream *open_read_file(const Filename &filename, bool auto_unwrap) const;
void close_read_file(istream *stream) const;
public:
INLINE bool read_file(const Filename &filename, string &result, bool auto_unwrap = false) const;
INLINE bool read_file(const Filename &filename, string &result, bool auto_unwrap) const;
void scan_mount_points(vector_string &names, const Filename &path) const;