mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
23 lines
343 B
C++
23 lines
343 B
C++
#ifndef SERIES_QUESTION_H
|
|
#define SERIES_QUESTION_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QRadioButton;
|
|
|
|
class SeriesQuestion : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SeriesQuestion(QWidget *parent = nullptr);
|
|
bool getYes();
|
|
void setYes(bool yes = true);
|
|
|
|
private:
|
|
QRadioButton *yes;
|
|
QRadioButton *no;
|
|
};
|
|
|
|
#endif // SERIES_QUESTION_H
|