1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/qqtprinter.h
tianduanrui 3f857669fc init
2016-12-29 16:49:18 +08:00

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