19 lines
510 B
C++
19 lines
510 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QskSkinFactory.h>
|
|
|
|
class MySkinFactory : public QskSkinFactory
|
|
{
|
|
Q_OBJECT
|
|
using Inherited = QskSkinFactory;
|
|
|
|
public:
|
|
QStringList skinNames() const override;
|
|
QskSkin* createSkin( const QString& skinName ) override;
|
|
};
|