2014-10-31 06:53:04 +00:00
|
|
|
/*
|
2020-08-02 22:10:35 +00:00
|
|
|
* SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-10-31 06:53:04 +00:00
|
|
|
*
|
2020-08-02 22:10:35 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-10-31 06:53:04 +00:00
|
|
|
*/
|
|
|
|
#ifndef KDECOARTIONS_PREVIEW_PLUGIN_H
|
|
|
|
#define KDECOARTIONS_PREVIEW_PLUGIN_H
|
|
|
|
|
|
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
|
|
|
|
namespace KDecoration2
|
|
|
|
{
|
|
|
|
namespace Preview
|
|
|
|
{
|
|
|
|
|
|
|
|
class Plugin : public QQmlExtensionPlugin
|
|
|
|
{
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kdecoration2")
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
void registerTypes(const char *uri) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|