File indexing completed on 2025-02-02 05:26:32

0001 /*
0002     SPDX-FileCopyrightText: 2009 Alan Alpert <alan.alpert@nokia.com>
0003     SPDX-FileCopyrightText: 2010 Ménard Alexis <menard@kde.org>
0004     SPDX-FileCopyrightText: 2010 Marco Martin <mart@kde.org>
0005     SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
0006 
0007     SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 #ifndef PLASMA5SUPPORTPLUGIN_H
0011 #define PLASMA5SUPPORTPLUGIN_H
0012 
0013 #include <QQmlEngine>
0014 #include <QQmlExtensionPlugin>
0015 
0016 #include <plasma5support/service.h>
0017 
0018 class Plasma5SupportPlugin : public QQmlExtensionPlugin
0019 {
0020     Q_OBJECT
0021     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0022 
0023 public:
0024     void registerTypes(const char *uri) override;
0025 };
0026 
0027 #endif