diff options
Diffstat (limited to 'vdr-vdrmanager/compressor.h')
-rw-r--r-- | vdr-vdrmanager/compressor.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/vdr-vdrmanager/compressor.h b/vdr-vdrmanager/compressor.h index fbcc14f..933d4c0 100644 --- a/vdr-vdrmanager/compressor.h +++ b/vdr-vdrmanager/compressor.h @@ -4,13 +4,15 @@ * Created on: 23.03.2013 * Author: bju */ - #ifndef COMPRESSOR_H_ #define COMPRESSOR_H_ #include <string> #define COMPRESSION_NONE 0 + +#if VDRMANAGER_USE_ZLIB || VDRMANAGER_USE_GZIP + #define COMPRESSION_ZLIB 1 #define COMPRESSION_GZIP 2 @@ -23,10 +25,17 @@ private: public: cCompressor(); virtual ~cCompressor(); +#if VDRMANAGER_USE_GZIP bool CompressGzip(string text); +#endif +#if VDRMANAGER_USE_ZLIB bool CompressZlib(string text); +#endif char * GetData(); size_t getDataSize(); }; + +#endif + #endif /* COMPRESSOR_H_ */ |