File indexing completed on 2024-04-21 15:02:55

0001 /*
0002  * This file is part of KQuickCharts
0003  * SPDX-FileCopyrightText: 2019 Arjen Hiemstra <ahiemstra@heimr.nl>
0004  *
0005  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006  */
0007 
0008 #ifndef CHARTSPLUGIN_H
0009 #define CHARTSPLUGIN_H
0010 
0011 #include <QQmlExtensionPlugin>
0012 
0013 class QuickChartsPlugin : public QQmlExtensionPlugin
0014 {
0015     Q_OBJECT
0016     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0017 
0018 public:
0019     explicit QuickChartsPlugin(QObject *parent = nullptr);
0020     void registerTypes(const char *uri) override;
0021 };
0022 
0023 #endif // CHARTSPLUGIN_H