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.

21 lines
470 B
C++

/*
SPDX-FileCopyrightText: 2017 Demitrius Belai <demitriusbelai@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef AURORAEPACKAGE_H
#define AURORAEPACKAGE_H
#include <KPackage/PackageStructure>
class AuroraePackage : public KPackage::PackageStructure
{
public:
AuroraePackage(QObject*, const QVariantList &) {}
void initPackage(KPackage::Package *package) override;
void pathChanged(KPackage::Package *package) override;
};
#endif