mirror of
https://github.com/YACReader/yacreader
synced 2026-03-02 10:50:04 -05:00
19 lines
328 B
C++
19 lines
328 B
C++
#ifndef SCRAPPER_TABLEVIEW_H
|
|
#define SCRAPPER_TABLEVIEW_H
|
|
|
|
#include <QTableView>
|
|
|
|
#include "themable.h"
|
|
|
|
class ScraperTableView : public QTableView, protected Themable
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ScraperTableView(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void applyTheme() override;
|
|
};
|
|
|
|
#endif // SCRAPPER_TABLEVIEW_H
|