mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-24 03:35:54 +01:00
14 lines
167 B
C++
14 lines
167 B
C++
#ifndef GZIP_H
|
|
#define GZIP_H
|
|
|
|
#include <QByteArray>
|
|
|
|
class QIODevice;
|
|
|
|
namespace Gzip
|
|
{
|
|
QByteArray uncompress(QIODevice *device, int limit = 0);
|
|
}
|
|
|
|
#endif // GZIP_H
|