File indexing completed on 2024-05-19 05:37:51

0001 /*
0002     SPDX-FileCopyrightText: 2012 Gregor Taetzner <gregor@freenet.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include <Plasma5Support/ServiceJob>
0010 
0011 class PackagekitJob : public Plasma5Support::ServiceJob
0012 {
0013     Q_OBJECT
0014 public:
0015     PackagekitJob(const QString &destination, const QString &operation, const QMap<QString, QVariant> &parameters, QObject *parent = nullptr);
0016     ~PackagekitJob() override;
0017 
0018 protected:
0019     void start() override;
0020 };