Luis Ángel San Martín 9795f514e7 added new comic_vine folder containing all the ComicVine related clases
added QtScript dependency (json parser)
2013-10-07 16:48:05 +02:00

23 lines
314 B
C++

#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();
private:
QRadioButton * yes;
QRadioButton * no;
};
#endif // SERIES_QUESTION_H