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:
|
2015-09-10 03:32:02 +05:30
|
|
|
static bool decompress(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
2015-09-14 05:55:47 +05:30
|
|
|
static bool compress(const QByteArray &uncompressedBytes, QByteArray &compressedBytes);
|
2015-08-18 05:55:24 +05:30
|
|
|
};
|
|
|
|
|