$szTitle = "wxfilterinputstream"; include "./_header.inc"; ?>
a filter stream has the capability of a normal stream but it can be placed on top of another stream. so, for example, it can uncompress or decrypt the data which are read from another stream and pass it to the requester.
derived from
include files
<wx/stream.h>
note
the interface of this class is the same as that of wxinputstream. only a constructor differs and it is documented below.
see also
wxfilterclassfactory
wxfilteroutputstream
members
wxfilterinputstream::wxfilterinputstream
wxfilterinputstream(wxinputstream& stream)
wxfilterinputstream(wxinputstream* stream)
initializes a "filter" stream.
if the parent stream is passed as a pointer then the new filter stream takes ownership of it. if it is passed by reference then it does not.
include "./_footer.inc"; ?>