blob: 6ab8e137b4e8fa671be15e81eba6453a6ae28716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef COMPRESSOR_H
#define COMPRESSOR_H
#include <QtCore/QByteArray>
class Compressor
{
private:
Compressor();
public:
static QByteArray compress(const QByteArray& data);
static QByteArray decompress(const QByteArray& data);
};
#endif // COMPRESSOR_H
|