mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 22:33:08 +00:00
This avoids mixing plasmashell state with our MobileShell component library (which really shouldn't have state at all).
18 lines
394 B
C++
18 lines
394 B
C++
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QQmlEngine>
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
class MobileShellStatePlugin : public QQmlExtensionPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
|
|
|
public:
|
|
void registerTypes(const char *uri) override;
|
|
};
|