]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/strmzlib.tex
Patch #581167
[wxWidgets.git] / docs / latex / wx / strmzlib.tex
... / ...
CommitLineData
1% -----------------------------------------------------------------------------
2% wxZlibInputStream
3% -----------------------------------------------------------------------------
4\section{\class{wxZlibInputStream}}\label{wxzlibinputstream}
5
6This stream uncompresses all data read from it. It uses the "filtered"
7stream 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
26This stream compresses all data written to it, and passes the compressed data
27to 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
48Creates a new write-only compressed stream. {\it level} means level of
49compression. It is number between 0 and 9 (including these values) where
500 means no compression and 9 best but slowest compression. -1 is default
51value (currently equivalent to 6).