File indexing completed on 2024-04-28 16:55:19

0001 /* SPDX-FileCopyrightText: 2017 The Qt Company Ltd.
0002  * SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
0003  * SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-or-later OR LicenseRef-KDE-Accepted-LGPL OR LicenseRef-KFQF-Accepted-GPL
0004  */
0005 
0006 #ifndef QQC2BREEZESTYLEPLUGIN_H
0007 #define QQC2BREEZESTYLEPLUGIN_H
0008 
0009 #include <QQmlExtensionPlugin>
0010 
0011 class QQC2BreezeStylePlugin : public QQmlExtensionPlugin
0012 {
0013     Q_OBJECT
0014     Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
0015 
0016 public:
0017     QQC2BreezeStylePlugin(QObject *parent = nullptr);
0018     ~QQC2BreezeStylePlugin();
0019 
0020     QString name() const;
0021 
0022     void registerTypes(const char *uri) override;
0023 
0024 private:
0025     Q_DISABLE_COPY(QQC2BreezeStylePlugin)
0026 };
0027 
0028 #endif