X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c319bc473425962581227b29b2128c7033c86f87..f0c3b72446ee4a45e63a953d2a098a5f229f3a57:/include/wx/dcmemory.h diff --git a/include/wx/dcmemory.h b/include/wx/dcmemory.h index f3cda2954c..4c76214c2a 100644 --- a/include/wx/dcmemory.h +++ b/include/wx/dcmemory.h @@ -12,14 +12,13 @@ #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() { } @@ -45,6 +44,7 @@ public: DoSelect(bmp); } +protected: virtual void DoSelect(const wxBitmap& bmp) = 0; };