]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcmemory.h
moved wxUSE_CRASHREPORT checks to wx/msw/chkconf.h; added it to setup.h.in so that...
[wxWidgets.git] / include / wx / dcmemory.h
index 55e6724e95946b413e3922f9e1c8916678dc88f7..4c76214c2a2fb877989f4061369ae8ec0fde42b1 100644 (file)
 #ifndef _WX_DCMEMORY_H_BASE_
 #define _WX_DCMEMORY_H_BASE_
 
-#include "wx/defs.h"
+#include "wx/bitmap.h"
 
 // NOTE: different native implementations of wxMemoryDC will derive from
 //       different wxDC classes (wxPaintDC, wxWindowDC, etc), so that
 //       we cannot derive wxMemoryDCBase from wxDC and then use it as the
 //       only base class for native impl of wxMemoryDC...
-class wxMemoryDCBase
+class WXDLLEXPORT wxMemoryDCBase
 {
 public:
     wxMemoryDCBase() { }
@@ -44,6 +44,7 @@ public:
         DoSelect(bmp);
     }
 
+protected:
     virtual void DoSelect(const wxBitmap& bmp) = 0;
 };