File indexing completed on 2024-05-12 15:44:45

0001 /*
0002     SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
0003     SPDX-FileCopyrightText: 2011 Aaron Seigo <aseigo@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef RUNNERMODELPLUGIN_H
0009 #define RUNNERMODELPLUGIN_H
0010 
0011 #include <QQmlExtensionPlugin>
0012 
0013 /*
0014  * FIXME: This plugin is deprecated, it should be removed for plasma2
0015  */
0016 class RunnerModelPlugin : public QQmlExtensionPlugin
0017 {
0018     Q_OBJECT
0019     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0020 
0021 public:
0022     void registerTypes(const char *uri) override;
0023 };
0024 
0025 #endif