/* KSysGuard, the KDE System Guard SPDX-FileCopyrightText: 2009 John Tapsell SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KSYSGUARD_HELPER_H #define KSYSGUARD_HELPER_H #include #include #include using namespace KAuth; /* The functions here run as ROOT. So be careful. */ class KSysGuardProcessListHelper : public QObject { Q_OBJECT public: KSysGuardProcessListHelper(); public Q_SLOTS: ActionReply sendsignal(const QVariantMap ¶meters); ActionReply renice(const QVariantMap ¶meters); ActionReply changeioscheduler(const QVariantMap ¶meters); ActionReply changecpuscheduler(const QVariantMap ¶meters); }; Q_DECLARE_METATYPE(QList) #endif // KSYSGUARD_HELPER_H