X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ecf902bc836f2808444b34eff48cdb12f289460..1a1498c08b07625baa087622e75637a2f15325b6:/include/wx/mstream.h?ds=inline diff --git a/include/wx/mstream.h b/include/wx/mstream.h index a679e6bb8f..d1b8a6230c 100644 --- a/include/wx/mstream.h +++ b/include/wx/mstream.h @@ -18,10 +18,13 @@ #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;