public:
wxMemoryDC();
wxMemoryDC( wxDC *dc ); // Create compatible DC
- ~wxMemoryDC();
+ virtual ~wxMemoryDC();
virtual void SelectObject( const wxBitmap& bitmap );
// these get reimplemented for mono-bitmaps to behave
virtual void SetTextBackground( const wxColour &col );
// implementation
+ virtual wxBitmap GetSelectedBitmap() const { return m_selected; }
wxBitmap m_selected;
protected: