2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2020-02-17 12:38:12 +00:00
|
|
|
#include <QtQml/QQmlEngineExtensionPlugin>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qdebug.h>
|
|
|
|
|
|
|
|
//![plugin]
|
2019-09-12 15:03:52 +00:00
|
|
|
class QExampleQmlPlugin : public QQmlEngineExtensionPlugin
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-09-12 15:03:52 +00:00
|
|
|
Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid)
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
//![plugin]
|
|
|
|
|
|
|
|
#include "plugin.moc"
|