Felix Kauselmann 197660b46e Linux: install docs in a more packaging-friendly way
Linux: Add initial support for manpages
2014-08-18 00:35:26 +02:00

24 lines
346 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();
void setYes(bool yes = true);
private:
QRadioButton * yes;
QRadioButton * no;
};
#endif // SERIES_QUESTION_H