mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
15 lines
341 B
C
15 lines
341 B
C
|
|
// SPDX-FileCopyrightText: 2021 Tobias Fella <fella@posteo.de>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QQmlExtensionPlugin>
|
||
|
|
|
||
|
|
class MmQmlPlugin : public QQmlExtensionPlugin
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
|
|
||
|
|
void registerTypes(const char *uri) override;
|
||
|
|
};
|