kcm-openrc/openrc_actions.h
2022-03-31 11:35:55 -04:00

16 lines
345 B
C++

#pragma once
#include <KAuth/KAuthActionReply>
#include <KAuth/KAuthHelperSupport>
class OpenRCHelper: public QObject {
Q_OBJECT
public Q_SLOTS:
KAuth::ActionReply removeservice(const QVariantMap& args);
KAuth::ActionReply stopservice(const QVariantMap& args);
KAuth::ActionReply restartservice(const QVariantMap& args);
};