1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxStringOutputStream docs
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) 2004 Vadim Zeitlin
9 %% License: wxWidgets licence
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxStringOutputStream
}}\label{wxstringoutputstream
}
14 This class implements an output stream which writes data either to a
15 user-provided or internally allocated string. Note that currently this stream
16 does not support seeking.
18 \wxheading{Derived from
}
20 \helpref{wxOutputStream
}{wxoutputstream
}
22 \wxheading{Include files
}
27 \latexignore{\rtfignore{\wxheading{Members
}}}
29 \membersection{wxStringOutputStream::wxStringOutputStream
}
31 \func{}{wxStringOutputStream
}{\param{wxString
}{ *str =
\texttt{NULL
}}}
33 If the provided pointer is non-
\texttt{NULL
}, data will be written to it.
34 Otherwise, an internal string is used for the data written to this stream, use
35 \helpref{GetString()
}{wxstringoutputstreamgetstring
} to get access to it.
38 \membersection{wxStringOutputStream::GetString
}\label{wxstringoutputstreamgetstring
}
40 \constfunc{const wxString\&
}{GetString
}{\void}
42 Returns the string containing all the data written to the stream so far.