mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
19 lines
289 B
C++
Executable File
19 lines
289 B
C++
Executable File
#ifndef _QQTPRINTER_H
|
|
#define _QQTPRINTER_H
|
|
|
|
#include <QPrinter>
|
|
|
|
class QQTPrinter : public QPrinter
|
|
{
|
|
public:
|
|
QQTPrinter(PrinterMode mode = HighResolution);
|
|
|
|
void setOutputFileName(const QString &);
|
|
void print();
|
|
|
|
private:
|
|
QString m_outputname;
|
|
};
|
|
|
|
#endif // QQTPRINTER_H
|