/****************************************************************************** * QSkinny - Copyright (C) 2016 Uwe Rathmann * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ #ifndef OTHERSKIN_H #define OTHERSKIN_H #include class Palette; class OtherSkin : public QskSkin { public: OtherSkin( const QString& name, QObject* parent = nullptr ); ~OtherSkin() override; private: void initHints(); void initGraphicFilters(); QString m_name; Palette* m_palette; }; #endif