]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/strmbfrd.tex
Tidied some docs, made VC++ 6 DLL compilation work with wxvc_dll.dsp,
[wxWidgets.git] / docs / latex / wx / strmbfrd.tex
1 % -----------------------------------------------------------------------------
2 % wxBufferedInputStream
3 % -----------------------------------------------------------------------------
4 \section{\class{wxBufferedInputStream}}\label{wxbufferedinputstream}
5
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
10 \wxheading{Derived from}
11
12 \helpref{wxFilterInputStream}{wxfilterinputstream}
13
14 \wxheading{Include files}
15
16 <wx/stream.h>
17
18 \wxheading{See also}
19
20 \helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxInputStream}{wxinputstream}
21
22 % -----------------------------------------------------------------------------
23 % wxBufferedOutputStream
24 % -----------------------------------------------------------------------------
25 \section{\class{wxBufferedOutputStream}}\label{wxbufferedoutputstream}
26
27 This stream acts as a cache. It caches the bytes to be written to the specified
28 output stream (See \helpref{wxFilterOutputStream}{wxfilteroutputstream}). The
29 datas are only written when the cache is full or when the buffered stream is
30 destroyed.
31
32 \wxheading{Derived from}
33
34 \helpref{wxFilterOutputStream}{wxfilteroutputstream}
35
36 \wxheading{Include files}
37
38 <wx/stream.h>
39
40 \wxheading{See also}
41
42 \helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxOutputStream}{wxoutputstream}
43