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