2018-12-29 17:54:54 +01:00
|
|
|
|
#ifndef PGLABTABLEVIEW_H
|
|
|
|
|
|
#define PGLABTABLEVIEW_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <QTableView>
|
|
|
|
|
|
|
2019-02-09 14:59:33 +01:00
|
|
|
|
class QSortFilterProxyModel;
|
|
|
|
|
|
|
2018-12-29 17:54:54 +01:00
|
|
|
|
class PgLabTableView : public QTableView {
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
|
|
explicit PgLabTableView(QWidget *parent = nullptr);
|
2019-02-09 14:59:33 +01:00
|
|
|
|
|
2018-12-29 17:54:54 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PGLABTABLEVIEW_H
|