mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
18 lines
266 B
C++
18 lines
266 B
C++
#ifndef SCRAPPER_TABLEVIEW_H
|
|
#define SCRAPPER_TABLEVIEW_H
|
|
|
|
#include <QTableView>
|
|
|
|
class ScraperTableView : public QTableView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ScraperTableView(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // SCRAPPER_TABLEVIEW_H
|