1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef MAINCOMPONENTPLUGIN_H
#define MAINCOMPONENTPLUGIN_H
#include <dqmlappmainwindowinterface.h>
class QQmlComponent;
class MainComponentPlugin : public QObject, public DTK_QUICK_NAMESPACE::DQmlAppMainWindowInterface
{
Q_OBJECT
Q_PLUGIN_METADATA(IID DQmlAppMainWindowInterface_iid FILE "plugin.json")
Q_INTERFACES(DTK_QUICK_NAMESPACE::DQmlAppMainWindowInterface)
public:
MainComponentPlugin(QObject *parent = nullptr);
~MainComponentPlugin() override;
QUrl mainComponentPath() const override;
};
#endif // MAINCOMPONENTPLUGIN_H
|