forked from Qortal/Brooklyn
22 lines
461 B
C++
22 lines
461 B
C++
/*
|
|
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;
|
|
};
|