mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-27 21:24:48 +01:00
12 lines
139 B
C
12 lines
139 B
C
|
#ifndef GZIP_H
|
||
|
#define GZIP_H
|
||
|
|
||
|
#include <QByteArray>
|
||
|
|
||
|
namespace Gzip
|
||
|
{
|
||
|
QByteArray uncompress(const QByteArray &data);
|
||
|
}
|
||
|
|
||
|
#endif // GZIP_H
|