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