X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/888dde65f43d5f57e8fb2028b27191cca1741403..486a0fa75f8ae4ef12968ef0eee8b54b066d11af:/include/wx/dcprint.h?ds=sidebyside diff --git a/include/wx/dcprint.h b/include/wx/dcprint.h index 2ae605b7e4..6d84731116 100644 --- a/include/wx/dcprint.h +++ b/include/wx/dcprint.h @@ -5,7 +5,6 @@ // Modified by: // Created: // Copyright: (c) Julian Smart -// RCS-ID: $Id$ // Licence: wxWindows Licence ///////////////////////////////////////////////////////////////////////////// @@ -22,23 +21,22 @@ // wxPrinterDC //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC +class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC { public: wxPrinterDC(); - wxPrinterDC( const wxPrintData& data ); - ~wxPrinterDC(); - - wxRect GetPaperRect(); - int GetResolution(); - + wxPrinterDC(const wxPrintData& data); + + wxRect GetPaperRect() const; + int GetResolution() const; + +protected: + wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { } + private: - DECLARE_DYNAMIC_CLASS() + DECLARE_DYNAMIC_CLASS(wxPrinterDC) }; +#endif // wxUSE_PRINTING_ARCHITECTURE -#endif - // wxUSE_PRINTING_ARCHITECTURE - -#endif - // _WX_DCPRINT_H_BASE_ +#endif // _WX_DCPRINT_H_BASE_