kwin/plugins/kpackage/decoration/decoration.h
2020-08-07 19:57:56 +00:00

20 lines
482 B
C++

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