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.
 
 
 
 
 
 

24 lines
488 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
*/
#pragma once
#include <Plasma/DataEngine>
class PackagekitEngine : public Plasma::DataEngine
{
Q_OBJECT
public:
PackagekitEngine(QObject *parent, const QVariantList &args);
void init();
protected:
Plasma::Service *serviceForSource(const QString &source) override;
private:
bool m_pk_available;
};