aboutsummaryrefslogtreecommitdiff
path: root/launcher/GZip.h
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-14 18:16:53 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-14 18:16:53 +0200
commit91ba4cf75ee30c64779edb5b7644e5a830de5026 (patch)
treeaa8c2433bfc3a54577aceeb706c4c2cd0986c95d /launcher/GZip.h
parent779f70057b021e285afd60cc650a14cd5feacffd (diff)
downloadPrismLauncher-91ba4cf75ee30c64779edb5b7644e5a830de5026.tar.gz
PrismLauncher-91ba4cf75ee30c64779edb5b7644e5a830de5026.tar.bz2
PrismLauncher-91ba4cf75ee30c64779edb5b7644e5a830de5026.zip
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/GZip.h')
-rw-r--r--launcher/GZip.h10
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);
};
-