]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/strmmem.tex
1. wxHtmlHelpController and related classes
[wxWidgets.git] / docs / latex / wx / strmmem.tex
index ebf0bcaf9df8a51333ee1b9d88dffcae643d553b..3892bf665d938213bc77736e6d7fce77c3881a14 100644 (file)
@@ -7,19 +7,13 @@
 
 \helpref{wxInputStream}{wxinputstream}
 
-\wxheading{See also}
-
-\helpref{wxStreamBuffer}{wxstreamBuffer}
+\wxheading{Include files}
 
-\wxheading{Remark}
+<wx/mstream.h>
 
-You can create a similar stream by this way:
-\begin{verbatim}
-  wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read);
-  wxInputStream *input = new wxInputStream(sb);
+\wxheading{See also}
 
-  sb->SetBufferIO(data, data\_end);
-\end{verbatim}
+\helpref{wxStreamBuffer}{wxstreamBuffer}
 
 % ----------
 % Members
@@ -48,35 +42,13 @@ Destructor.
 
 \helpref{wxOutputStream}{wxoutputstream}
 
-\wxheading{See also}
-
-\helpref{wxStreamBuffer}{wxstreamBuffer}
-
-
-\wxheading{Remark}
+\wxheading{Include files}
 
-You can create a similar stream by this way:
-\begin{verbatim}
-  wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::write);
-  wxOutputStream *input = new wxOutputStream(sb);
+<wx/mstream.h>
 
-  // If there are data
-    sb->SetBufferIO(data, data\_end);
-  // Else
-    sb->Fixed(FALSE);
-\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);
-  wxInputStream *input = new wxInputStream(sb);
+\wxheading{See also}
 
-  // If there are data
-    sb->SetBufferIO(data, data\_end);
-  // Else
-    sb->Fixed(FALSE);
-\end{verbatim}
+\helpref{wxStreamBuffer}{wxstreamBuffer}
 
 % ----------
 % Members
@@ -100,3 +72,17 @@ stream.
 \func{}{\destruct{wxMemoryOutputStream}}{\void}
 
 Destructor.
+
+\membersection{wxMemoryOutputStream::CopyTo}
+
+\constfunc{size\_t}{CopyTo}{\param{char *}{buffer}, \param{size\_t }{len}}
+
+CopyTo allowed you to transfer data from the internal buffer of
+wxMemoryOutputStream to an external buffer. \it{len} specifies the size of
+the buffer.
+
+\wxheading{Returned value}
+
+CopyTo returns the number of bytes copied to the buffer. Generally it is either
+len or the size of the stream buffer.
+