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

#include "multimc_logic_export.h"

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