X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c70014d966bbfa08d201ca24c825f2d88cc3975..42d0df0030abbac4ca11a78b2f529133e3c9d986:/include/wx/mstream.h diff --git a/include/wx/mstream.h b/include/wx/mstream.h index 2719d90474..d1b8a6230c 100644 --- a/include/wx/mstream.h +++ b/include/wx/mstream.h @@ -12,14 +12,19 @@ #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;