X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c913512a4c9f36e11e07ea707002fab1608d324..25bc5c55d0b11b071102796561227f67bd073c3b:/interface/sstream.h diff --git a/interface/sstream.h b/interface/sstream.h index 243a420236..a950a75848 100644 --- a/interface/sstream.h +++ b/interface/sstream.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: sstream.h -// Purpose: documentation for wxStringInputStream class +// Purpose: interface of wxStringInputStream // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -28,6 +28,7 @@ public: }; + /** @class wxStringOutputStream @wxheader{sstream.h} @@ -46,17 +47,17 @@ public: 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 @e str is used, data written to the stream is appended to the current + If @a 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 wxOutputStream::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. */ - wxStringOutputStream(wxString str = @NULL); + wxStringOutputStream(wxString str = NULL); /** Returns the string containing all the data written to the stream so far. */ - const wxString GetString(); + const wxString GetString() const; }; +