mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
24 lines
406 B
C++
24 lines
406 B
C++
/*
|
|
SPDX-FileCopyrightText: 2014 Vishesh Handa <me@vhanda.in>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <KDEDModule>
|
|
#include <QVariantList>
|
|
|
|
class KDEDKSysGuard : public KDEDModule
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit KDEDKSysGuard(QObject *parent, const QVariantList &);
|
|
~KDEDKSysGuard() override;
|
|
|
|
private Q_SLOTS:
|
|
void init();
|
|
void showTaskManager();
|
|
};
|