]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mstream.h
fixed wxContextHelpButton bitmap (dis)appearance
[wxWidgets.git] / include / wx / mstream.h
index 7a71e8059a3dd3cdb442922f6b6d763ae0a9f188..85e0b30e35479f4903f0d54235254486caf13998 100644 (file)
@@ -15,7 +15,7 @@
 
 #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();