1 % -----------------------------------------------------------------------------
3 % -----------------------------------------------------------------------------
4 \section{\class{wxFilterInputStream
}}\label{wxfilterinputstream
}
6 A filter stream has the capability of a normal stream but it can be placed on top
7 of another stream. So, for example, it can uncompress or decrypt the data which are read
8 from another stream and pass it to the requester.
10 \wxheading{Derived from
}
12 \helpref{wxInputStream
}{wxinputstream
}\\
13 \helpref{wxStreamBase
}{wxstreambase
}
15 \wxheading{Include files
}
21 \helpref{wxBase
}{librarieslist
}
25 The interface of this class is the same as that of wxInputStream. Only a constructor
26 differs and it is documented below.
30 \helpref{wxFilterClassFactory
}{wxfilterclassfactory
}\\
31 \helpref{wxFilterOutputStream
}{wxfilteroutputstream
}
33 \latexignore{\rtfignore{\wxheading{Members
}}}
38 \membersection{wxFilterInputStream::wxFilterInputStream
}\label{wxfilterinputstreamctor
}
40 \func{}{wxFilterInputStream
}{\param{wxInputStream\&
}{ stream
}}
42 \func{}{wxFilterInputStream
}{\param{wxInputStream*
}{ stream
}}
44 Initializes a "filter" stream.
46 If the parent stream is passed as a pointer then the new filter stream
47 takes ownership of it. If it is passed by reference then it does not.