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.
19 lines
522 B
19 lines
522 B
/* |
|
SPDX-FileCopyrightText: 2011 Sebastian Kügler <sebas@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#include "powermanagementservice.h" |
|
#include "powermanagementjob.h" |
|
|
|
PowerManagementService::PowerManagementService(QObject *parent) |
|
: Plasma::Service(parent) |
|
{ |
|
setName(QStringLiteral("powermanagementservice")); |
|
} |
|
|
|
ServiceJob *PowerManagementService::createJob(const QString &operation, QMap<QString, QVariant> ¶meters) |
|
{ |
|
return new PowerManagementJob(operation, parameters, this); |
|
}
|
|
|