summaryrefslogtreecommitdiff
path: root/gzip.h
diff options
context:
space:
mode:
Diffstat (limited to 'gzip.h')
-rw-r--r--gzip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gzip.h b/gzip.h
index 134f694..211d085 100644
--- a/gzip.h
+++ b/gzip.h
@@ -11,8 +11,8 @@ NAMESPACE_BEGIN(CryptoPP)
class Gzip : public Deflator
{
public:
- Gzip(BufferedTransformation *attachment=NULL, unsigned int deflateLevel=DEFAULT_DEFLATE_LEVEL, unsigned int log2WindowSize=DEFAULT_LOG2_WINDOW_SIZE)
- : Deflator(attachment, deflateLevel, log2WindowSize) {}
+ Gzip(BufferedTransformation *attachment=NULL, unsigned int deflateLevel=DEFAULT_DEFLATE_LEVEL, unsigned int log2WindowSize=DEFAULT_LOG2_WINDOW_SIZE, bool detectUncompressible=true)
+ : Deflator(attachment, deflateLevel, log2WindowSize, detectUncompressible) {}
Gzip(const NameValuePairs &parameters, BufferedTransformation *attachment=NULL)
: Deflator(parameters, attachment) {}