corrected DECLARE_DYNAMIC_CLASS use

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50364 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-11-30 17:47:55 +00:00
parent 2ccc5f110f
commit 1a2c763ccb

View File

@@ -22,23 +22,20 @@
// wxPrinterDC // wxPrinterDC
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC
{ {
public: public:
wxPrinterDC(); wxPrinterDC();
wxPrinterDC( const wxPrintData& data ); wxPrinterDC(const wxPrintData& data);
~wxPrinterDC(); virtual ~wxPrinterDC();
wxRect GetPaperRect(); wxRect GetPaperRect();
int GetResolution(); int GetResolution();
private: private:
DECLARE_DYNAMIC_CLASS() DECLARE_DYNAMIC_CLASS(wxPrinterDC)
}; };
#endif // wxUSE_PRINTING_ARCHITECTURE
#endif #endif // _WX_DCPRINT_H_BASE_
// wxUSE_PRINTING_ARCHITECTURE
#endif
// _WX_DCPRINT_H_BASE_