2015-08-18 05:55:24 +05:30
|
|
|
#pragma once
|
|
|
|
#include <QByteArray>
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT GZip
|
2015-08-18 05:55:24 +05:30
|
|
|
{
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
static bool unzip(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
|
|
static bool zip(const QByteArray &uncompressedBytes, QByteArray &compressedBytes);
|
2015-08-18 05:55:24 +05:30
|
|
|
};
|
|
|
|
|