21 lines
469 B
C
21 lines
469 B
C
|
#ifndef QTMATERIALRADIOBUTTON_P_H
|
||
|
#define QTMATERIALRADIOBUTTON_P_H
|
||
|
|
||
|
#include "lib/qtmaterialcheckable_p.h"
|
||
|
|
||
|
class QtMaterialRadioButton;
|
||
|
|
||
|
class QtMaterialRadioButtonPrivate : public QtMaterialCheckablePrivate
|
||
|
{
|
||
|
Q_DISABLE_COPY(QtMaterialRadioButtonPrivate)
|
||
|
Q_DECLARE_PUBLIC(QtMaterialRadioButton)
|
||
|
|
||
|
public:
|
||
|
QtMaterialRadioButtonPrivate(QtMaterialRadioButton *q);
|
||
|
~QtMaterialRadioButtonPrivate();
|
||
|
|
||
|
void init();
|
||
|
};
|
||
|
|
||
|
#endif // QTMATERIALRADIOBUTTON_P_H
|