Warning, file /plasma/milou/lib/qml/qmlplugins.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 * This file is part of the KDE Milou Project 0003 * SPDX-FileCopyrightText: 2013 Vishesh Handa <me@vhanda.in> 0004 * 0005 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0006 * 0007 */ 0008 0009 #ifndef _MILOU_QML_PLUGINS_H 0010 #define _MILOU_QML_PLUGINS_H 0011 0012 #include <QQmlExtensionPlugin> 0013 0014 class QmlPlugins : public QQmlExtensionPlugin 0015 { 0016 Q_OBJECT 0017 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 0018 public: 0019 void initializeEngine(QQmlEngine *engine, const char *uri) override; 0020 void registerTypes(const char *uri) override; 0021 }; 0022 0023 #endif // _MILOU_QML_PLUGINS_H