X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cd25b18c8e7e8d77b1a5847f289afec6e114fbd5..695237bccd652c60deba347117ba5ab32067880c:/include/wx/mstream.h diff --git a/include/wx/mstream.h b/include/wx/mstream.h index 61a9df7eff..85e0b30e35 100644 --- a/include/wx/mstream.h +++ b/include/wx/mstream.h @@ -11,11 +11,11 @@ #ifndef _WX_WXMMSTREAM_H__ #define _WX_WXMMSTREAM_H__ -#include +#include "wx/stream.h" #if wxUSE_STREAMS -class wxMemoryInputStream: public wxInputStream { +class WXDLLEXPORT wxMemoryInputStream: public wxInputStream { private: size_t m_length; @@ -37,7 +37,7 @@ class wxMemoryInputStream: public wxInputStream { off_t OnSysTell() const; }; -class wxMemoryOutputStream: public wxOutputStream { +class WXDLLEXPORT wxMemoryOutputStream: public wxOutputStream { public: wxMemoryOutputStream(char *data = NULL, size_t length = 0); virtual ~wxMemoryOutputStream();