]>
Commit | Line | Data |
---|---|---|
631f1bfe JS |
1 | % ----------------------------------------------------------------------------- |
2 | % wxZlibInputStream | |
3 | % ----------------------------------------------------------------------------- | |
750b78ba | 4 | \section{\class{wxZlibInputStream}}\label{wxzlibinputstream} |
631f1bfe | 5 | |
36edded9 JS |
6 | This stream uncompresses all data read from it. It uses the "filtered" |
7 | stream to get new compressed data. | |
8 | ||
631f1bfe JS |
9 | \wxheading{Derived from} |
10 | ||
11 | \helpref{wxFilterInputStream}{wxfilterinputstream} | |
12 | ||
954b8ae6 JS |
13 | \wxheading{Include files} |
14 | ||
15 | <wx/zstream.h> | |
16 | ||
631f1bfe JS |
17 | \wxheading{See also} |
18 | ||
f59d80ca | 19 | \helpref{wxInputStream}{wxinputstream} |
631f1bfe | 20 | |
631f1bfe JS |
21 | % ----------------------------------------------------------------------------- |
22 | % wxZlibOutputStream | |
23 | % ----------------------------------------------------------------------------- | |
750b78ba | 24 | \section{\class{wxZlibOutputStream}}\label{wxzliboutputstream} |
631f1bfe | 25 | |
36edded9 | 26 | This stream compresses all data written to it, and passes the compressed data |
330d6fd0 | 27 | to the "filtered" stream. |
36edded9 | 28 | |
631f1bfe JS |
29 | \wxheading{Derived from} |
30 | ||
31 | \helpref{wxFilterOutputStream}{wxfilteroutputstream} | |
32 | ||
954b8ae6 JS |
33 | \wxheading{Include files} |
34 | ||
35 | <wx/zstream.h> | |
36 | ||
631f1bfe JS |
37 | \wxheading{See also} |
38 | ||
f59d80ca | 39 | \helpref{wxOutputStream}{wxoutputstream} |
631f1bfe | 40 | |
5824f314 VS |
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). |