2015-08-18 02:25:24 +02:00
|
|
|
#pragma once
|
|
|
|
#include <QByteArray>
|
|
|
|
|
2015-09-05 18:46:57 +02:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT GZip
|
2015-08-18 02:25:24 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-09-10 00:02:02 +02:00
|
|
|
static bool decompress(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
2015-08-18 02:25:24 +02:00
|
|
|
};
|
|
|
|
|