mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 15:45:53 +00:00
22 lines
414 B
C
22 lines
414 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QUrl>
|
||
|
|
||
|
#include <QQmlEngine>
|
||
|
#include <QQmlExtensionPlugin>
|
||
|
|
||
|
class ContainmentLayoutManagerPlugin : public QQmlExtensionPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
|
||
|
public:
|
||
|
void registerTypes(const char *uri) override;
|
||
|
};
|