25 lines
390 B
C++
25 lines
390 B
C++
#ifndef RADIOBUTTON_H
|
|
#define RADIOBUTTON_H
|
|
|
|
#include "lib/checkable.h"
|
|
|
|
class RadioButtonPrivate;
|
|
|
|
class RadioButton : public Checkable
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RadioButton(QWidget *parent = 0);
|
|
~RadioButton();
|
|
|
|
protected:
|
|
void assignProperties() Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
Q_DISABLE_COPY(RadioButton)
|
|
Q_DECLARE_PRIVATE(RadioButton)
|
|
};
|
|
|
|
#endif // RADIOBUTTON_H
|