mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 06:34:27 +02:00
9 lines
239 B
C++
9 lines
239 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
class GZip {
|
|
public:
|
|
static bool unzip(const QByteArray& compressedBytes, QByteArray& uncompressedBytes);
|
|
static bool zip(const QByteArray& uncompressedBytes, QByteArray& compressedBytes);
|
|
};
|