Having this line is not useful at all as it doesn't contain any information and shouldn't be filled in the future as git-shortlog can provide the information about people who changed the given file more more reliably than consulting the comments in any case. Keep the non-blank lines for historical purposes.
41 lines
1,022 B
C++
41 lines
1,022 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/dcprint.h
|
|
// Purpose: wxPrinterDC base header
|
|
// Author: Julian Smart
|
|
// Created:
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DCPRINT_H_BASE_
|
|
#define _WX_DCPRINT_H_BASE_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
#include "wx/dc.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxPrinterDC
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC
|
|
{
|
|
public:
|
|
wxPrinterDC();
|
|
wxPrinterDC(const wxPrintData& data);
|
|
|
|
wxRect GetPaperRect() const;
|
|
int GetResolution() const override;
|
|
|
|
protected:
|
|
wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { }
|
|
|
|
private:
|
|
wxDECLARE_DYNAMIC_CLASS(wxPrinterDC);
|
|
};
|
|
|
|
#endif // wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
#endif // _WX_DCPRINT_H_BASE_
|