]>
Commit | Line | Data |
---|---|---|
e2a6f233 JS |
1 | % ----------------------------------------------------------------------------- |
2 | % wxFilterOutputStream | |
3 | % ----------------------------------------------------------------------------- | |
4 | \section{\class{wxFilterOutputStream}}\label{wxfilteroutputstream} | |
5 | ||
6 | \wxheading{Derived from} | |
7 | ||
631f1bfe JS |
8 | \helpref{wxOutputStream}{wxoutputstream}\\ |
9 | \helpref{wxStreamBase}{wxstreambase} | |
e2a6f233 JS |
10 | |
11 | \wxheading{Note} | |
12 | ||
13 | The use of this class is exactly the same as of wxOutputStream. Only a constructor | |
14 | differs and it is documented below. | |
15 | ||
16 | % ----------- | |
17 | % ctor & dtor | |
18 | % ----------- | |
19 | \membersection{wxFilterOutputStream::wxFilterOutputStream} | |
20 | ||
21 | \func{}{wxFilterOutputStream}{\param{wxOutputStream\&}{ stream}} | |
22 | ||
da3aea64 GL |
23 | Initializes a "filter" stream. A filter stream has the capability of a normal |
24 | stream but it can be placed on the top of another stream. So, for example, it | |
25 | can compress, crypt the datas which are passed to it and write them to another | |
26 | stream. | |
cba2db0c | 27 |