1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00
Look Skyworker 3623613834 test for ss
2018-06-16 16:28:51 +09:00

26 lines
346 B
C++

// (c) The Qt Company Ltd. BSD License
// Some code is fixed by j2doll.
#ifndef PRINTVIEW_H
#define PRINTVIEW_H
#include <QTableView>
QT_BEGIN_NAMESPACE
class QPrinter;
QT_END_NAMESPACE
class PrintView : public QTableView
{
Q_OBJECT
public:
PrintView();
public Q_SLOTS:
void print(QPrinter *printer);
};
#endif // PRINTVIEW_H