aboutsummaryrefslogtreecommitdiff
path: root/launcher/GZip.h
blob: 7d4b1c3323c44f40f60140fe6f79df1db581931b (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <QByteArray>

class GZip
{
public:
    static bool unzip(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
    static bool zip(const QByteArray &uncompressedBytes, QByteArray &compressedBytes);
};