.\" This is a wxWidgets manpage page generated from the XML docs .TH wxStringOutputStream 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxStringOutputStream \- String output stream class .SH DESCRIPTION This class implements an output stream which writes data either to a user-provided or internally allocated string. Note that currently this stream does not support seeking but can tell its current position. .SH "PARENTS" wxOutputStream .SH "INCLUDE FILES" wx/sstream.h .SH MEMBERS .SS wxStringOutputStream (wxString *str = \texttt{NULL}) If the provided pointer is non- NULL , data will be written to it. Otherwise, an internal string is used for the data written to this stream, use GetString() to get access to it. If str is used, data written to the stream is appended to the current contents of it, i.e. the string is not cleared here. However if it is not empty, the positions returned by TellO will be offset by the initial string length, i.e. initial stream position will be the initial length of the string and not 0. .SS const wxString& GetString () Returns the string containing all the data written to the stream so far. .SH "SEE ALSO" wxOutputStream .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.