You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
461 B
21 lines
461 B
/* |
|
SPDX-FileCopyrightText: 2011 Sebastian Kügler <sebas@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <Plasma/Service> |
|
#include <Plasma/ServiceJob> |
|
|
|
using namespace Plasma; |
|
|
|
class PowerManagementService : public Plasma::Service |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit PowerManagementService(QObject *parent = nullptr); |
|
ServiceJob *createJob(const QString &operation, QMap<QString, QVariant> ¶meters) override; |
|
};
|
|
|