mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 22:33:08 +00:00
14 lines
255 B
C++
14 lines
255 B
C++
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <kdedmodule.h>
|
|
|
|
class Start : public KDEDModule
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Start(QObject *parent, const QList<QVariant> &);
|
|
};
|