blob: 883a96f339399a84b82cd88087e910757983df59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <QObject>
#include <QtQmlIntegration/qqmlintegration.h>
class Systemd : public QObject {
Q_OBJECT;
QML_SINGLETON;
QML_ELEMENT;
public:
Q_INVOKABLE void stopUserUnit(const QString& unit, const QString& mode);
};
|