RestLink 2.2.0
Powerfull Rest Client for Qt
Loading...
Searching...
No Matches
compressionutils.h
1#ifndef RESTLINK_COMPRESSIONUTILS_H
2#define RESTLINK_COMPRESSIONUTILS_H
3
4#include <RestLink/global.h>
5
6namespace RestLink {
7
8class RESTLINK_EXPORT CompressionUtils
9{
10public:
11 static QByteArray decompress(const QByteArray &input, const QByteArray &algorithm);
12
13#ifdef ZLIB_LIB
14 static QByteArray decompressGzip(const QByteArray &input);
15 static QByteArray decompressDeflate(const QByteArray &input);
16#endif
17
18 static QList<QByteArray> supportedAlgorithms();
19};
20
21}
22
23#endif // RESTLINK_COMPRESSIONUTILS_H