]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/sstream.h
more compilation fixes after pen/brush styles changes
[wxWidgets.git] / interface / sstream.h
index 8ff3234cc53f01df008318eadea82f84f90f6b4a..a950a758485adca1aa1207dd8009dca9f3b69d2d 100644 (file)
@@ -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
@@ -9,10 +9,10 @@
 /**
     @class wxStringInputStream
     @wxheader{sstream.h}
-    
+
     This class implements an input stream which reads data from a string. It
     supports seeking.
-    
+
     @library{wxbase}
     @category{streams}
 */
@@ -28,14 +28,15 @@ public:
 };
 
 
+
 /**
     @class wxStringOutputStream
     @wxheader{sstream.h}
-    
+
     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.
-    
+
     @library{wxbase}
     @category{streams}
 */
@@ -44,19 +45,19 @@ class wxStringOutputStream : public wxOutputStream
 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 
+        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;
 };
+