]>
Commit | Line | Data |
---|---|---|
3de08727 GL |
1 | % ----------------------------------------------------------------------------- |
2 | % wxBufferedInputStream | |
3 | % ----------------------------------------------------------------------------- | |
4 | \section{\class{wxBufferedInputStream}}\label{wxbufferedinputstream} | |
5 | ||
36edded9 JS |
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 | ||
3de08727 GL |
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 | ||
3de08727 GL |
22 | % ----------------------------------------------------------------------------- |
23 | % wxBufferedOutputStream | |
24 | % ----------------------------------------------------------------------------- | |
25 | \section{\class{wxBufferedOutputStream}}\label{wxbufferedoutputstream} | |
26 | ||
36edded9 JS |
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 | ||
3de08727 GL |
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 |