mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-16 04:13:11 +00:00
10 lines
149 B
C
10 lines
149 B
C
|
#pragma once
|
||
|
#include <QByteArray>
|
||
|
|
||
|
class GZip
|
||
|
{
|
||
|
public:
|
||
|
static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
||
|
};
|
||
|
|