mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
13 lines
230 B
C++
13 lines
230 B
C++
#ifndef SCRAPER_CHECKBOX_H
|
|
#define SCRAPER_CHECKBOX_H
|
|
|
|
#include <QCheckBox>
|
|
|
|
class ScraperCheckBox : public QCheckBox
|
|
{
|
|
public:
|
|
ScraperCheckBox(const QString &text, QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // SCRAPER_CHECKBOX_H
|