aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/logichelper/logichelperplugin.cpp
blob: c7dc903d1bccfd2ea373b9e662212a251a3340e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2026 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtQml/qqmlextensionplugin.h>

QT_BEGIN_NAMESPACE

class LogicHelperPlugin: public QQmlExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)

public:
    LogicHelperPlugin(QObject *parent = nullptr);
    void registerTypes(const char *uri) override;
};

LogicHelperPlugin::LogicHelperPlugin(QObject *parent)
    : QQmlExtensionPlugin(parent)
{
}

void LogicHelperPlugin::registerTypes(const char *)
{
}

QT_END_NAMESPACE

#include "logichelperplugin.moc"