An input stream object that uses zlib to decompress (inflate) the input from another source stream on-the-fly. More...
Public Member Functions | |
IDecompressStream () | |
IDecompressStream (istream source, bool owns_source) | |
IDecompressStream | close () |
Resets the ZStream to empty, but does not actually close the source istream unless owns_source was true. | |
IDecompressStream | open (istream source, bool owns_source) |
An input stream object that uses zlib to decompress (inflate) the input from another source stream on-the-fly.
Attach an IDecompressStream to an existing istream that provides compressed data, and read the corresponding uncompressed data from the IDecompressStream.
Seeking is not supported.
IDecompressStream | ( | istream | source, |
bool | owns_source | ||
) |
Resets the ZStream to empty, but does not actually close the source istream unless owns_source was true.
IDecompressStream open | ( | istream | source, |
bool | owns_source | ||
) |