| 1 | % ----------------------------------------------------------------------------- |
| 2 | % wxZlibInputStream |
| 3 | % ----------------------------------------------------------------------------- |
| 4 | \section{\class{wxZlibInputStream}}\label{wxzlibinputstream} |
| 5 | |
| 6 | This stream uncompresses all data read from it. It uses the "filtered" |
| 7 | stream to get new compressed data. |
| 8 | |
| 9 | \wxheading{Derived from} |
| 10 | |
| 11 | \helpref{wxFilterInputStream}{wxfilterinputstream} |
| 12 | |
| 13 | \wxheading{Include files} |
| 14 | |
| 15 | <wx/zstream.h> |
| 16 | |
| 17 | \wxheading{See also} |
| 18 | |
| 19 | \helpref{wxInputStream}{wxinputstream} |
| 20 | |
| 21 | % ----------------------------------------------------------------------------- |
| 22 | % wxZlibOutputStream |
| 23 | % ----------------------------------------------------------------------------- |
| 24 | \section{\class{wxZlibOutputStream}}\label{wxzliboutputstream} |
| 25 | |
| 26 | This stream compresses all data written to it, and passes the compressed data |
| 27 | to the "filtered" stream. |
| 28 | |
| 29 | \wxheading{Derived from} |
| 30 | |
| 31 | \helpref{wxFilterOutputStream}{wxfilteroutputstream} |
| 32 | |
| 33 | \wxheading{Include files} |
| 34 | |
| 35 | <wx/zstream.h> |
| 36 | |
| 37 | \wxheading{See also} |
| 38 | |
| 39 | \helpref{wxOutputStream}{wxoutputstream} |
| 40 | |
| 41 | |
| 42 | \latexignore{\rtfignore{\wxheading{Members}}} |
| 43 | |
| 44 | \membersection{wxZlibOutputStream::wxZlibOutputStream} |
| 45 | |
| 46 | \func{}{wxZlibOutputStream}{\param{wxOutputStream\&}{ stream},\param{int}{ level = -1}} |
| 47 | |
| 48 | Creates a new write-only compressed stream. {\it level} means level of |
| 49 | compression. It is number between 0 and 9 (including these values) where |
| 50 | 0 means no compression and 9 best but slowest compression. -1 is default |
| 51 | value (currently equivalent to 6). |