You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2016 Smith AR <audoban@openmailbox.org>
|
|
|
|
SPDX-FileCopyrightText: 2016 Michail Vourlakos <mvourlakos@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LATTEPACKAGE_H
|
|
|
|
#define LATTEPACKAGE_H
|
|
|
|
|
|
|
|
// Qt
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
// KDE
|
|
|
|
#include <KPackage/PackageStructure>
|
|
|
|
|
|
|
|
namespace Latte {
|
|
|
|
class Package : public KPackage::PackageStructure
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Package(QObject *parent = 0, const QVariantList &args = QVariantList());
|
|
|
|
|
|
|
|
~Package() override;
|
|
|
|
void initPackage(KPackage::Package *package) override;
|
|
|
|
void pathChanged(KPackage::Package *package) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // LATTEPACKAGE_H
|