diff options
Diffstat (limited to 'launcher/GZip.h')
-rw-r--r-- | launcher/GZip.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/launcher/GZip.h b/launcher/GZip.h index 7d4b1c33..0bdb7040 100644 --- a/launcher/GZip.h +++ b/launcher/GZip.h @@ -1,10 +1,8 @@ #pragma once #include <QByteArray> -class GZip -{ -public: - static bool unzip(const QByteArray &compressedBytes, QByteArray &uncompressedBytes); - static bool zip(const QByteArray &uncompressedBytes, QByteArray &compressedBytes); +class GZip { + public: + static bool unzip(const QByteArray& compressedBytes, QByteArray& uncompressedBytes); + static bool zip(const QByteArray& uncompressedBytes, QByteArray& compressedBytes); }; - |