- wxMemoryDC() : wxWindowDC() { Init(); }
- wxMemoryDC(wxBitmap& bitmap) : wxWindowDC() { Init(); SelectObject(bitmap); }
- wxMemoryDC( wxDC *dc ); // Create compatible DC
- virtual ~wxMemoryDC();
+
+#if wxUSE_NEW_DC
+ wxGTKMemoryImplDC( wxMemoryDC *owner );
+ wxGTKMemoryImplDC( wxMemoryDC *owner, wxBitmap& bitmap );
+ wxGTKMemoryImplDC( wxMemoryDC *owner, wxDC *dc );
+#else
+ wxMemoryDC();
+ wxMemoryDC(wxBitmap& bitmap);
+ wxMemoryDC( wxDC *dc );
+#endif
+
+ virtual ~wxGTKMemoryImplDC();