22 lines
316 B
C
Raw Normal View History

2017-07-25 07:24:27 +02:00
#ifndef OTHERSKIN_H
#define OTHERSKIN_H
#include <QskSkin.h>
class Palette;
class OtherSkin : public QskSkin
{
public:
OtherSkin( const QString& name, QObject* parent = nullptr );
virtual ~OtherSkin();
private:
void initHints();
QString m_name;
Palette* m_palette;
};
#endif // OTHERSKIN_H