kcm-openrc/openrc_actions.h
Juraj Oravec 4e875fc716
Port to Qt6 KF6
Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
2025-05-25 22:06:47 +02:00

17 lines
401 B
C++

#ifndef OPENRC_ACTIONS_H
#define OPENRC_ACTIONS_H
#include <KAuth/ActionReply>
#include <KAuth/HelperSupport>
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);
};
#endif /* OPENRC_ACTIONS_H */