diff options
author | alexcrush <alexcrush@yandex-team.ru> | 2022-02-10 16:50:33 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:33 +0300 |
commit | 923c477d52607f8f7ba049046234075fc393db76 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/stream/zlib.h | |
parent | 34f0683c2d7731f2f9f59966c12e602f405fa0d6 (diff) | |
download | ydb-923c477d52607f8f7ba049046234075fc393db76.tar.gz |
Restoring authorship annotation for <alexcrush@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/zlib.h')
-rw-r--r-- | util/stream/zlib.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/stream/zlib.h b/util/stream/zlib.h index 02192b8dc2..e7de7c81b7 100644 --- a/util/stream/zlib.h +++ b/util/stream/zlib.h @@ -51,17 +51,17 @@ public: TZLibDecompress(IInputStream* input, ZLib::StreamType type = ZLib::Auto, size_t buflen = ZLib::ZLIB_BUF_LEN, TStringBuf dict = {}); - /** - * Allows/disallows multiple sequential compressed streams. Allowed by default. - * - * If multiple streams are allowed, their decompressed content will be concatenated. - * If multiple streams are disabled, then only first stream is decompressed. After that end + /** + * Allows/disallows multiple sequential compressed streams. Allowed by default. + * + * If multiple streams are allowed, their decompressed content will be concatenated. + * If multiple streams are disabled, then only first stream is decompressed. After that end * of IInputStream will have happen, i.e. method Read() will return 0. - * - * @param allowMultipleStreams - flag to allow (true) or disable (false) multiple streams. - */ - void SetAllowMultipleStreams(bool allowMultipleStreams); - + * + * @param allowMultipleStreams - flag to allow (true) or disable (false) multiple streams. + */ + void SetAllowMultipleStreams(bool allowMultipleStreams); + ~TZLibDecompress() override; protected: |