diff options
Diffstat (limited to 'common/file.h')
-rw-r--r-- | common/file.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/file.h b/common/file.h index 54168ffc7d..3adeb6ff36 100644 --- a/common/file.h +++ b/common/file.h @@ -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(); }; |