aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/Qt6QmlPluginTemplate.cpp.in
blob: c96190dae17df2e0a476edc3588bc260eeae8ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This file is autogenerated by CMake. Do not edit.

#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)
    {
        @qt_qml_plugin_constructor_content@
    }
};

@qt_qml_plugin_outro@

#include "@qt_qml_plugin_moc_include_name@"