/////////////////////////////////////////////////////////////////////////////
// Name: mstream.h
-// Purpose: documentation for wxMemoryOutputStream class
+// Purpose: interface of wxMemoryOutputStream
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{streams}
- @seealso
- wxStreamBuffer
+ @see wxStreamBuffer
*/
class wxMemoryOutputStream : public wxOutputStream
{
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}
@library{wxbase}
@category{streams}
- @seealso
- wxStreamBuffer, wxMemoryOutputStream
+ @see wxStreamBuffer, wxMemoryOutputStream
*/
class wxMemoryInputStream : public wxInputStream
{
Returns the pointer to the stream object used as an internal buffer
for that stream.
*/
- wxStreamBuffer* GetInputStreamBuffer();
+ wxStreamBuffer* GetInputStreamBuffer() const;
};
+