diff options
Diffstat (limited to 'common/file.h')
| -rw-r--r-- | common/file.h | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/common/file.h b/common/file.h index 3c2520b07c..3adeb6ff36 100644 --- a/common/file.h +++ b/common/file.h @@ -125,7 +125,7 @@ public:  	virtual ~DumpFile();  	virtual bool open(const String &filename); -	//virtual bool open(const FilesystemNode &node); +	virtual bool open(const FilesystemNode &node);  	virtual void close(); @@ -148,7 +148,9 @@ public:  	 */  	virtual bool eof() const; -	uint32 write(const void *dataPtr, uint32 dataSize); +	virtual uint32 write(const void *dataPtr, uint32 dataSize); + +	virtual void flush();  }; | 
