mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2025-07-16 20:14:23 +02: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
|