qt-material-widgets/components/lib/style_p.h

28 lines
327 B
C++

#ifndef STYLE_P_H
#define STYLE_P_H
#include <QtGlobal>
namespace md
{
class Style;
class Theme;
class StylePrivate
{
Q_DISABLE_COPY(StylePrivate)
Q_DECLARE_PUBLIC(Style)
public:
StylePrivate(Style *q);
~StylePrivate();
void init();
Style *const q_ptr;
Theme *theme;
};
}
#endif // STYLE_P_H