]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/mstream.h
non-pch build fix
[wxWidgets.git] / interface / mstream.h
index b6ac5e90747ab280bd1ef8b7599dbafb14852540..37319f10b2b7a5229e462b4933da29d7bc6dc413 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        mstream.h
-// Purpose:     documentation for wxMemoryOutputStream class
+// Purpose:     interface of wxMemoryOutputStream
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -14,8 +14,7 @@
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBuffer
+    @see wxStreamBuffer
 */
 class wxMemoryOutputStream : public wxOutputStream
 {
@@ -36,16 +35,17 @@ public:
         wxMemoryOutputStream to an external buffer. @a len specifies the size of
         the buffer.
     */
-    size_t CopyTo(char* buffer, size_t len);
+    size_t CopyTo(char* buffer, size_t len) const;
 
     /**
         Returns the pointer to the stream object used as an internal buffer
         for that stream.
     */
-    wxStreamBuffer* GetOutputStreamBuffer();
+    wxStreamBuffer* GetOutputStreamBuffer() const;
 };
 
 
+
 /**
     @class wxMemoryInputStream
     @wxheader{mstream.h}
@@ -54,8 +54,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBuffer, wxMemoryOutputStream
+    @see wxStreamBuffer, wxMemoryOutputStream
 */
 class wxMemoryInputStream : public wxInputStream
 {
@@ -83,5 +82,6 @@ public:
         Returns the pointer to the stream object used as an internal buffer
         for that stream.
     */
-    wxStreamBuffer* GetInputStreamBuffer();
+    wxStreamBuffer* GetInputStreamBuffer() const;
 };
+