QtPBFImagePlugin/src/gzip.h

14 lines
167 B
C
Raw Normal View History

2018-10-29 00:11:23 +01:00
#ifndef GZIP_H
#define GZIP_H
#include <QByteArray>
class QIODevice;
2018-10-29 00:11:23 +01:00
namespace Gzip
{
2020-04-15 10:06:57 +02:00
QByteArray uncompress(QIODevice *device, int limit = 0);
2018-10-29 00:11:23 +01:00
}
#endif // GZIP_H