diff options
Diffstat (limited to 'source/OSSupport/GZipFile.h')
-rw-r--r-- | source/OSSupport/GZipFile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/OSSupport/GZipFile.h b/source/OSSupport/GZipFile.h index 10fb447dd..f20b4d11e 100644 --- a/source/OSSupport/GZipFile.h +++ b/source/OSSupport/GZipFile.h @@ -37,7 +37,9 @@ public: int ReadRestOfFile(AString & a_Contents);
/// Writes a_Contents into file, compressing it along the way. Returns true if successful. Multiple writes are supported.
- bool Write(const AString & a_Contents);
+ bool Write(const AString & a_Contents) { return Write(a_Contents.data(), (int)(a_Contents.size())); }
+
+ bool Write(const char * a_Data, int a_Size);
protected:
gzFile m_File;
|