12 lines
205 B
C++
12 lines
205 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
class MULTIMC_LOGIC_EXPORT GZip
|
|
{
|
|
public:
|
|
static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
};
|
|
|