kwin/plugins/kpackage/decoration/decoration.h

21 lines
482 B
C
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
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 &) {}
2018-12-03 12:56:56 +00:00
void initPackage(KPackage::Package *package) override;
void pathChanged(KPackage::Package *package) override;
};
#endif