#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() { }
DoSelect(bmp);
}
+protected:
virtual void DoSelect(const wxBitmap& bmp) = 0;
};