X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..746b24a09de738d5263284c3feb9cc4f855b23d6:/include/wx/motif/dcmemory.h diff --git a/include/wx/motif/dcmemory.h b/include/wx/motif/dcmemory.h index c6fa2faf9d..caae8445ee 100644 --- a/include/wx/motif/dcmemory.h +++ b/include/wx/motif/dcmemory.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcmemory.h +// Name: wx/motif/dcmemory.h // Purpose: wxMemoryDC class // Author: Julian Smart // Modified by: @@ -12,30 +12,26 @@ #ifndef _WX_DCMEMORY_H_ #define _WX_DCMEMORY_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "dcmemory.h" -#endif - #include "wx/dcclient.h" -class wxMemoryDC : public wxWindowDC +class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC { DECLARE_DYNAMIC_CLASS(wxMemoryDC) - + public: wxMemoryDC(); wxMemoryDC( wxDC *dc ); // Create compatible DC ~wxMemoryDC(); - + virtual void SelectObject( const wxBitmap& bitmap ); - + void DoGetSize( int *width, int *height ) const; - + wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; } - + private: friend class wxPaintDC; - + wxBitmap m_bitmap; };