X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c70014d966bbfa08d201ca24c825f2d88cc3975..1c067fe3c1e752658c63b4d556eb6a5468213860:/include/wx/mstream.h diff --git a/include/wx/mstream.h b/include/wx/mstream.h index 2719d90474..2857dc074d 100644 --- a/include/wx/mstream.h +++ b/include/wx/mstream.h @@ -12,17 +12,21 @@ #ifndef _WX_WXMMSTREAM_H__ #define _WX_WXMMSTREAM_H__ -#include "wx/stream.h" +#include "wx/defs.h" #if wxUSE_STREAMS +#include "wx/stream.h" + +class WXDLLIMPEXP_BASE wxMemoryOutputStream; + class WXDLLIMPEXP_BASE wxMemoryInputStream : public wxInputStream { public: wxMemoryInputStream(const void *data, size_t length); + wxMemoryInputStream(const wxMemoryOutputStream& stream); virtual ~wxMemoryInputStream(); virtual wxFileOffset GetLength() const { return m_length; } - virtual bool Eof() const; virtual bool IsSeekable() const { return true; } char Peek();