25 lines
440 B
C
25 lines
440 B
C
|
#ifndef QTMATERIALSTYLE_P_H
|
||
|
#define QTMATERIALSTYLE_P_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
|
||
|
class QtMaterialStyle;
|
||
|
class QtMaterialTheme;
|
||
|
|
||
|
class QtMaterialStylePrivate
|
||
|
{
|
||
|
Q_DISABLE_COPY(QtMaterialStylePrivate)
|
||
|
Q_DECLARE_PUBLIC(QtMaterialStyle)
|
||
|
|
||
|
public:
|
||
|
QtMaterialStylePrivate(QtMaterialStyle *q);
|
||
|
~QtMaterialStylePrivate();
|
||
|
|
||
|
void init();
|
||
|
|
||
|
QtMaterialStyle *const q_ptr;
|
||
|
QtMaterialTheme *theme;
|
||
|
};
|
||
|
|
||
|
#endif // QTMATERIALSTYLE_P_H
|