From c3a1946675855b299a2b36550cdf2c2f69d153aa Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Mon, 17 Sep 2012 23:03:03 +0200 Subject: initial import --- distfoldd/compressor.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 distfoldd/compressor.h (limited to 'distfoldd/compressor.h') diff --git a/distfoldd/compressor.h b/distfoldd/compressor.h new file mode 100644 index 0000000..6ab8e13 --- /dev/null +++ b/distfoldd/compressor.h @@ -0,0 +1,16 @@ +#ifndef COMPRESSOR_H +#define COMPRESSOR_H + +#include + +class Compressor +{ +private: + Compressor(); + +public: + static QByteArray compress(const QByteArray& data); + static QByteArray decompress(const QByteArray& data); +}; + +#endif // COMPRESSOR_H -- cgit v1.2.3