\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
\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
\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.
+