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
//-----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC
class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC
{
public:
wxPrinterDC();
wxPrinterDC( const wxPrintData& data );
~wxPrinterDC();
wxPrinterDC(const wxPrintData& data);
virtual ~wxPrinterDC();
wxRect GetPaperRect();
int GetResolution();
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_