File indexing completed on 2024-04-28 05:34:17

0001 // SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
0002 //
0003 // SPDX-License-Identifier: LGPL-2.1-or-later
0004 
0005 #ifndef PLASMAPASSPLUGIN_H
0006 #define PLASMAPASSPLUGIN_H
0007 
0008 #include <QQmlExtensionPlugin>
0009 
0010 class PlasmaPassPlugin : public QQmlExtensionPlugin
0011 {
0012     Q_OBJECT
0013     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0014 
0015 public:
0016     void registerTypes(const char *uri) override;
0017 };
0018 
0019 #endif // PLASMAPASSPLUGIN_H