]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mstream.h
We surely don't need two debugging sections,
[wxWidgets.git] / include / wx / mstream.h
index b1b15cb8d6919b57b9dbca0b0244c8149506bdbd..d80cd3a401dd5ec62243cd552a9b1e367cbab093 100644 (file)
@@ -40,6 +40,8 @@ protected:
 
 private:
     size_t m_length;
+
+    DECLARE_NO_COPY_CLASS(wxMemoryInputStream)
 };
 
 class WXDLLEXPORT wxMemoryOutputStream : public wxOutputStream
@@ -64,6 +66,8 @@ protected:
     size_t OnSysWrite(const void *buffer, size_t nbytes);
     off_t OnSysSeek(off_t pos, wxSeekMode mode);
     off_t OnSysTell() const;
+
+    DECLARE_NO_COPY_CLASS(wxMemoryOutputStream)
 };
 
 #endif