1 /***********************************************************************************************************************************
2 Gz Decompress
3 
4 Decompress IO from the gz format.
5 ***********************************************************************************************************************************/
6 #ifndef COMMON_COMPRESS_GZ_DECOMPRESS_H
7 #define COMMON_COMPRESS_GZ_DECOMPRESS_H
8 
9 #include "common/io/filter/filter.h"
10 
11 /***********************************************************************************************************************************
12 Filter type constant
13 ***********************************************************************************************************************************/
14 #define GZ_DECOMPRESS_FILTER_TYPE                                   "gzDecompress"
15     STRING_DECLARE(GZ_DECOMPRESS_FILTER_TYPE_STR);
16 
17 /***********************************************************************************************************************************
18 Constructors
19 ***********************************************************************************************************************************/
20 IoFilter *gzDecompressNew(void);
21 
22 #endif
23