QtPBFImagePlugin/src/gzip.h
2020-04-15 10:06:57 +02:00

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