GH-1227 add GZip compress function and a unit test fo GZip

This commit is contained in:
Petr Mrázek
2015-09-14 02:25:47 +02:00
parent cfd5976471
commit e38cc1d480
4 changed files with 119 additions and 14 deletions

View File

@@ -7,5 +7,6 @@ class MULTIMC_LOGIC_EXPORT GZip
{
public:
static bool decompress(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
static bool compress(const QByteArray &uncompressedBytes, QByteArray &compressedBytes);
};