// Author: Robert Roebling
// RCS-ID: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// wxMemoryDC
//-----------------------------------------------------------------------------
-class wxMemoryDC: public wxWindowDC
+class wxMemoryDC : public wxWindowDC
{
- DECLARE_DYNAMIC_CLASS(wxMemoryDC)
-
public:
- wxMemoryDC();
- wxMemoryDC( wxDC *dc ); // Create compatible DC
- ~wxMemoryDC();
- virtual void SelectObject( const wxBitmap& bitmap );
- void GetSize( int *width, int *height ) const;
-
- // implementation
-
- wxBitmap m_selected;
+ wxMemoryDC();
+ wxMemoryDC( wxDC *dc ); // Create compatible DC
+ ~wxMemoryDC();
+ virtual void SelectObject( const wxBitmap& bitmap );
+ void DoGetSize( int *width, int *height ) const;
+
+ // implementation
+ wxBitmap m_selected;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxMemoryDC)
};
#endif