12 lines
222 B
C++
12 lines
222 B
C++
#ifndef PGLABTABLEVIEW_H
|
|
#define PGLABTABLEVIEW_H
|
|
|
|
#include <QTableView>
|
|
|
|
class PgLabTableView : public QTableView {
|
|
Q_OBJECT
|
|
public:
|
|
explicit PgLabTableView(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // PGLABTABLEVIEW_H
|