mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
389 B
C
19 lines
389 B
C
|
|
// SPDX-FileCopyrightText: 2023 by Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QUrl>
|
||
|
|
|
||
|
|
#include <QQmlEngine>
|
||
|
|
#include <QQmlExtensionPlugin>
|
||
|
|
|
||
|
|
class CellularPlugin : public QQmlExtensionPlugin
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
|
|
||
|
|
public:
|
||
|
|
void registerTypes(const char *uri) override;
|
||
|
|
};
|