2017-07-21 18:21:34 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SKINNY_SHAPE_PROVIDER_H
|
|
|
|
#define SKINNY_SHAPE_PROVIDER_H
|
|
|
|
|
|
|
|
#include "SkinnyGlobal.h"
|
|
|
|
#include <QskGraphicProvider.h>
|
|
|
|
|
|
|
|
class SKINNY_EXPORT SkinnyShapeProvider : public QskGraphicProvider
|
|
|
|
{
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|