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
547 B
19 lines
547 B
/* |
|
SPDX-FileCopyrightText: 2012 Gregor Taetzner <gregor@freenet.de> |
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL |
|
*/ |
|
|
|
#include "packagekitservice.h" |
|
#include "packagekitjob.h" |
|
|
|
PackagekitService::PackagekitService(QObject *parent) |
|
: Plasma::Service(parent) |
|
{ |
|
setName(QStringLiteral("packagekit")); |
|
} |
|
|
|
Plasma::ServiceJob *PackagekitService::createJob(const QString &operation, QMap<QString, QVariant> ¶meters) |
|
{ |
|
return new PackagekitJob(destination(), operation, parameters, this); |
|
}
|
|
|