#ifndef _QQTPRINTER_H #define _QQTPRINTER_H #include class QQTPrinter : public QPrinter { public: QQTPrinter(PrinterMode mode = HighResolution); void setOutputFileName(const QString &); void print(); private: QString m_outputname; }; #endif // QQTPRINTER_H