]>
Commit | Line | Data |
---|---|---|
e2a6f233 JS |
1 | % ----------------------------------------------------------------------------- |
2 | % wxFilterInputStream | |
3 | % ----------------------------------------------------------------------------- | |
4 | \section{\class{wxFilterInputStream}}\label{wxfilterinputstream} | |
5 | ||
6 | \wxheading{Derived from} | |
7 | ||
631f1bfe JS |
8 | \helpref{wxInputStream}{wxinputstream}\\ |
9 | \helpref{wxStreamBase}{wxstreambase} | |
e2a6f233 | 10 | |
954b8ae6 JS |
11 | \wxheading{Include files} |
12 | ||
13 | <wx/stream.h> | |
14 | ||
e2a6f233 JS |
15 | \wxheading{Note} |
16 | ||
17 | The use of this class is exactly the same as of wxInputStream. Only a constructor | |
18 | differs and it is documented below. | |
19 | ||
20 | % ----------- | |
21 | % ctor & dtor | |
22 | % ----------- | |
23 | \membersection{wxFilterInputStream::wxFilterInputStream} | |
24 | ||
25 | \func{}{wxFilterInputStream}{\param{wxInputStream\&}{ stream}} | |
26 | ||
da3aea64 GL |
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 uncompress, uncrypt the datas which are read from another stream and pass it | |
30 | to the requester. | |
cba2db0c | 31 |