qt-material-widgets/include/qt-material-widgets/component/qtmaterialradiobutton.h

26 lines
534 B
C++

#ifndef QTMATERIALRADIOBUTTON_H
#define QTMATERIALRADIOBUTTON_H
#include "qt-material-widgets/lib/qtmaterialcheckable.h"
class QtMaterialRadioButtonPrivate;
class QT_MATERIAL_WIDGETS_EXPORT QtMaterialRadioButton
: public QtMaterialCheckable
{
Q_OBJECT
public:
explicit QtMaterialRadioButton(QWidget *parent = 0);
~QtMaterialRadioButton();
protected:
void setupProperties();
private:
Q_DISABLE_COPY(QtMaterialRadioButton)
Q_DECLARE_PRIVATE(QtMaterialRadioButton)
};
#endif // QTMATERIALRADIOBUTTON_H