2017-07-21 18:21:34 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2017-07-21 18:21:34 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2022-04-01 13:56:16 +02:00
|
|
|
#pragma once
|
2017-07-21 18:21:34 +02:00
|
|
|
|
|
|
|
#include "SkinnyGlobal.h"
|
|
|
|
#include <QskGraphicProvider.h>
|
|
|
|
|
|
|
|
class SKINNY_EXPORT SkinnyShapeProvider : public QskGraphicProvider
|
|
|
|
{
|
2019-01-07 09:13:53 +01:00
|
|
|
protected:
|
2018-07-31 17:32:25 +02:00
|
|
|
const QskGraphic* loadGraphic( const QString& id ) const override final;
|
2017-07-21 18:21:34 +02:00
|
|
|
};
|
|
|
|
|