]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcprint.h
wxRTC: fixed guidelines overwriting adjacent cell borders; corrected capitalisation...
[wxWidgets.git] / include / wx / dcprint.h
index 2ae605b7e4e40dc7a474cda0a7a45ce79573145f..6d84731116804dd9434c15b183abb288c0e3a4c1 100644 (file)
@@ -5,7 +5,6 @@
 // Modified by:
 // Created:
 // Copyright:   (c) Julian Smart
-// RCS-ID:      $Id$
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
 // 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_