aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/Qt6QmlPluginTemplate.cpp.in
blob: 978893274315cd53673409c7ad84f4b9975b9ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This file is autogenerated by CMake.
// It facilitates usage of a pure QML module as a static QML plugin.

#include <QtQml/qqmlextensionplugin.h>

@qt_qml_plugin_intro@

class @qt_qml_plugin_class_name@ : public QQmlEngineExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid)

public:
    @qt_qml_plugin_class_name@(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent)
    {
        Q_UNUSED(parent);
        @qt_qml_plugin_constructor_content@
    }
};

@qt_qml_plugin_outro@

#include "@qt_qml_plugin_moc_include_name@"