]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mstream.h
Made wxWindow::HasScrollbar() do what it says.
[wxWidgets.git] / include / wx / mstream.h
index 9ed77087f99d0231a177b77324f86609e92fe449..8e12d632744ffcf5ea18513dd82a2e779848ea5f 100644 (file)
@@ -18,7 +18,7 @@
 
 #include "wx/stream.h"
 
-class WXDLLIMPEXP_BASE wxMemoryOutputStream;
+class WXDLLIMPEXP_FWD_BASE wxMemoryOutputStream;
 
 class WXDLLIMPEXP_BASE wxMemoryInputStream : public wxInputStream
 {
@@ -31,6 +31,7 @@ public:
         InitFromStream(stream, lenFile);
     }
     wxMemoryInputStream(wxMemoryInputStream& stream)
+        : wxInputStream()
     {
         InitFromStream(stream, wxInvalidOffset);
     }
@@ -63,7 +64,8 @@ private:
     size_t m_length;
 
     // copy ctor is implemented above: it copies the other stream in this one
-    DECLARE_NO_ASSIGN_CLASS(wxMemoryInputStream)
+    DECLARE_ABSTRACT_CLASS(wxMemoryInputStream)
+    wxDECLARE_NO_ASSIGN_CLASS(wxMemoryInputStream);
 };
 
 class WXDLLIMPEXP_BASE wxMemoryOutputStream : public wxOutputStream
@@ -92,7 +94,8 @@ protected:
     wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
     wxFileOffset OnSysTell() const;
 
-    DECLARE_NO_COPY_CLASS(wxMemoryOutputStream)
+    DECLARE_DYNAMIC_CLASS(wxMemoryOutputStream)
+    wxDECLARE_NO_COPY_CLASS(wxMemoryOutputStream);
 };
 
 #if WXWIN_COMPATIBILITY_2_6