From 3de08727cabfdfb3006ab61349bfa98f3b2c3ed7 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Wed, 28 Jul 1999 17:16:59 +0000 Subject: [PATCH] Added another missing file (wxBufferedStreams doc) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3179 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/strmbfrd.tex | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 docs/latex/wx/strmbfrd.tex diff --git a/docs/latex/wx/strmbfrd.tex b/docs/latex/wx/strmbfrd.tex new file mode 100644 index 0000000000..94650e567c --- /dev/null +++ b/docs/latex/wx/strmbfrd.tex @@ -0,0 +1,46 @@ +% ----------------------------------------------------------------------------- +% wxBufferedInputStream +% ----------------------------------------------------------------------------- +\section{\class{wxBufferedInputStream}}\label{wxbufferedinputstream} + +\wxheading{Derived from} + +\helpref{wxFilterInputStream}{wxfilterinputstream} + +\wxheading{Include files} + + + +\wxheading{See also} + +\helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxInputStream}{wxinputstream} + +\wxheading{Short description} + +This stream acts as a cache. It caches the bytes read from the specified +input stream (See \helpref{wxFilterInputStream}{wxfilterinputstream}). +It uses wxStreamBuffer and sets the default in-buffer size to 1024 bytes. + +% ----------------------------------------------------------------------------- +% wxBufferedOutputStream +% ----------------------------------------------------------------------------- +\section{\class{wxBufferedOutputStream}}\label{wxbufferedoutputstream} + +\wxheading{Derived from} + +\helpref{wxFilterOutputStream}{wxfilteroutputstream} + +\wxheading{Include files} + + + +\wxheading{See also} + +\helpref{wxStreamBuffer}{wxstreamBuffer}, \helpref{wxOutputStream}{wxoutputstream} + +\wxheading{Short description} + +This stream acts as a cache. It caches the bytes to be written to the specified +output stream (See \helpref{wxFilterOutputStream}{wxfilteroutputstream}). The +datas are only written when the cache is full or when the buffered stream is +destroyed.