]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/strmmem.tex
documented wxCONFIG_USE_RELATIVE_PATH
[wxWidgets.git] / docs / latex / wx / strmmem.tex
index ebf0bcaf9df8a51333ee1b9d88dffcae643d553b..f22a4bdaa0bb53af154d487dd95315100b1d53db 100644 (file)
@@ -7,6 +7,10 @@
 
 \helpref{wxInputStream}{wxinputstream}
 
+\wxheading{Include files}
+
+<wx/mstream.h>
+
 \wxheading{See also}
 
 \helpref{wxStreamBuffer}{wxstreamBuffer}
@@ -14,6 +18,7 @@
 \wxheading{Remark}
 
 You can create a similar stream by this way:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read);
   wxInputStream *input = new wxInputStream(sb);
@@ -48,14 +53,18 @@ Destructor.
 
 \helpref{wxOutputStream}{wxoutputstream}
 
+\wxheading{Include files}
+
+<wx/mstream.h>
+
 \wxheading{See also}
 
 \helpref{wxStreamBuffer}{wxstreamBuffer}
 
-
 \wxheading{Remark}
 
 You can create a similar stream by this way:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::write);
   wxOutputStream *input = new wxOutputStream(sb);
@@ -67,6 +76,7 @@ You can create a similar stream by this way:
 \end{verbatim}
 
 This way is also useful to create read/write memory stream:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read\_write);
   wxOutputStream *output = new wxOutputStream(sb);
@@ -100,3 +110,4 @@ stream.
 \func{}{\destruct{wxMemoryOutputStream}}{\void}
 
 Destructor.
+