// (c) The Qt Company Ltd. BSD License // Some code is fixed by j2doll. #ifndef PRINTVIEW_H #define PRINTVIEW_H #include 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