]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcbuffer.h
Compilation fix.
[wxWidgets.git] / include / wx / dcbuffer.h
index 51682aad1ae52671ac0a1fd50b1db7aba09a0487..3ab1fe3e35ff4934871985bd2f3348966a17de76 100644 (file)
 #endif
 
 #include "wx/dcmemory.h"
+#include "wx/dcclient.h"
 
 
 // ==============================================================
 //   Double buffering helper.
 // --------------------------------------------------------------
 
-class WXDLLEXPORT wxBufferedDC : public wxMemoryDC
+class WXDLLIMPEXP_ADV wxBufferedDC : public wxMemoryDC
 {
 private:
 
@@ -72,6 +73,8 @@ public:
         // to) is destroyed.
 
     void UnMask();
+
+    DECLARE_NO_COPY_CLASS(wxBufferedDC)
 };
 
 
@@ -82,7 +85,7 @@ public:
 // Creates a double buffered wxPaintDC, optionally allowing the
 // user to specify their own buffer to use.
 
-class WXDLLEXPORT wxBufferedPaintDC : public wxBufferedDC
+class WXDLLIMPEXP_ADV wxBufferedPaintDC : public wxBufferedDC
 {
 private:
 
@@ -95,9 +98,10 @@ public:
     // default copy ctor ok.
 
     ~wxBufferedPaintDC();
+
+    DECLARE_NO_COPY_CLASS(wxBufferedPaintDC)
 };
 
 
 #endif  // _WX_DCBUFFER_H_
 
-// vi:sts=4:sw=4:et