]>
Commit | Line | Data |
---|---|---|
3de08727 GL |
1 | % ----------------------------------------------------------------------------- |
2 | % wxBufferedInputStream | |
3 | % ----------------------------------------------------------------------------- | |
4 | \section{\class{wxBufferedInputStream}}\label{wxbufferedinputstream} | |
5 | ||
6 | \wxheading{Derived from} | |
7 | ||
8 | \helpref{wxFilterInputStream}{wxfilterinputstream} | |
9 | ||
10 | \wxheading{Include files} | |
11 | ||
12 | <wx/stream.h> | |
13 | ||
14 | \wxheading{See also} | |
15 | ||
16 | \helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxInputStream}{wxinputstream} | |
17 | ||
18 | \wxheading{Short description} | |
19 | ||
20 | This stream acts as a cache. It caches the bytes read from the specified | |
21 | input stream (See \helpref{wxFilterInputStream}{wxfilterinputstream}). | |
22 | It uses wxStreamBuffer and sets the default in-buffer size to 1024 bytes. | |
23 | ||
24 | % ----------------------------------------------------------------------------- | |
25 | % wxBufferedOutputStream | |
26 | % ----------------------------------------------------------------------------- | |
27 | \section{\class{wxBufferedOutputStream}}\label{wxbufferedoutputstream} | |
28 | ||
29 | \wxheading{Derived from} | |
30 | ||
31 | \helpref{wxFilterOutputStream}{wxfilteroutputstream} | |
32 | ||
33 | \wxheading{Include files} | |
34 | ||
35 | <wx/stream.h> | |
36 | ||
37 | \wxheading{See also} | |
38 | ||
39 | \helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxOutputStream}{wxoutputstream} | |
40 | ||
41 | \wxheading{Short description} | |
42 | ||
43 | This stream acts as a cache. It caches the bytes to be written to the specified | |
44 | output stream (See \helpref{wxFilterOutputStream}{wxfilteroutputstream}). The | |
45 | datas are only written when the cache is full or when the buffered stream is | |
46 | destroyed. | |
22d6efa8 | 47 |