git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49954
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
public:
wxPrinterDC();
wxPrinterDC( const wxPrintData& data );
+ ~wxPrinterDC();
wxRect GetPaperRect();
int GetResolution();
m_pimpl = factory->CreatePrinterDC( this, data );
}
+wxPrinterDC::~wxPrinterDC()
+{
+}
+
+wxRect wxPrinterDC::GetPaperRect()
+{
+ return GetImpl()->GetPaperRect();
+}
+
+int wxPrinterDC::GetResolution()
+{
+ return GetImpl()->GetResolution();
+}
+
+
//-----------------------------------------------------------------------------
// wxImplDC
//-----------------------------------------------------------------------------