mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-03 16:54:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			323 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			323 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
 |