Uwe Rathmann 68bc2f032c dh
2018-07-31 17:32:25 +02:00

23 lines
348 B
C++

#ifndef OTHERSKIN_H
#define OTHERSKIN_H
#include <QskSkin.h>
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 // OTHERSKIN_H