1 % -----------------------------------------------------------------------------
2 % wxBufferedInputStream
3 % -----------------------------------------------------------------------------
4 \section{\class{wxBufferedInputStream
}}\label{wxbufferedinputstream
}
6 This stream acts as a cache. It caches the bytes read from the specified
7 input stream (See
\helpref{wxFilterInputStream
}{wxfilterinputstream
}).
8 It uses wxStreamBuffer and sets the default in-buffer size to
1024 bytes.
9 This class may not be used without some other stream to read the data
10 from (such as a file stream or a memory stream).
12 \wxheading{Derived from
}
14 \helpref{wxFilterInputStream
}{wxfilterinputstream
}
16 \wxheading{Include files
}
22 \helpref{wxStreamBuffer
}{wxstreambuffer
},
\helpref{wxInputStream
}{wxinputstream
}
24 % -----------------------------------------------------------------------------
25 % wxBufferedOutputStream
26 % -----------------------------------------------------------------------------
27 \section{\class{wxBufferedOutputStream
}}\label{wxbufferedoutputstream
}
29 This stream acts as a cache. It caches the bytes to be written to the specified
30 output stream (See
\helpref{wxFilterOutputStream
}{wxfilteroutputstream
}). The
31 datas are only written when the cache is full or when the buffered stream is
33 This class may not be used without some other stream to write the data
34 to (such as a file stream or a memory stream).
36 \wxheading{Derived from
}
38 \helpref{wxFilterOutputStream
}{wxfilteroutputstream
}
40 \wxheading{Include files
}
46 \helpref{wxStreamBuffer
}{wxstreamBuffer
},
\helpref{wxOutputStream
}{wxoutputstream
}