]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dcps.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / dcps.h
index b533506563aaf994b603f6838a669d0bf474dc9e..067cb380e3b20dc52ef2f5aff1e940f6e278f04b 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        dcps.h
 // Purpose:     interface of wxPostScriptDC
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 class wxPostScriptDC : public wxDC
 {
 public:
+    wxPostScriptDC();
+
     /**
         Constructs a PostScript printer device context from a wxPrintData object.
     */
     wxPostScriptDC(const wxPrintData& printData);
 
-    /**
-        Return resolution used in PostScript output.
-
-        @see SetResolution()
-    */
-    virtual int GetResolution() const;
-
-    /**
-        Set resolution (in pixels per inch) that will be used in PostScript
-        output. Default is 720ppi.
-    */
-    virtual wxRect GetPaperRect() const;
 };