mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Headless server: simplify system config logger
This commit is contained in:
23
YACReaderLibrary/comic_vine/series_question.h
Normal file
23
YACReaderLibrary/comic_vine/series_question.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef SERIES_QUESTION_H
|
||||
#define SERIES_QUESTION_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QRadioButton;
|
||||
|
||||
class SeriesQuestion : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
SeriesQuestion(QWidget * parent = 0);
|
||||
bool getYes();
|
||||
void setYes(bool yes = true);
|
||||
|
||||
private:
|
||||
QRadioButton * yes;
|
||||
QRadioButton * no;
|
||||
};
|
||||
|
||||
|
||||
#endif // SERIES_QUESTION_H
|
Reference in New Issue
Block a user