File indexing completed on 2024-12-15 03:45:05
0001 /* 0002 SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org> 0003 0004 SPDX-License-Identifier: MIT 0005 */ 0006 0007 #ifndef KUSERFEEDBACK_QMLPLUGIN_H 0008 #define KUSERFEEDBACK_QMLPLUGIN_H 0009 0010 #include <QQmlExtensionPlugin> 0011 0012 namespace KUserFeedback { 0013 0014 class QmlPlugin : public QQmlExtensionPlugin 0015 { 0016 Q_OBJECT 0017 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 0018 public: 0019 void registerTypes(const char *uri) override; 0020 }; 0021 0022 } 0023 0024 #endif // KUSERFEEDBACK_QMLPLUGIN_H