yacreader/YACReaderLibrary/comic_vine/series_question.h
Luis Ángel San Martín 268bebbddd Use nullptr instead of 0
2019-06-01 16:04:48 +02:00

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