mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-21 22:55:53 +00:00
21 lines
474 B
C
21 lines
474 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <KPackage/PackageStructure>
|
||
|
|
||
|
class WallpaperPackage : public KPackage::PackageStructure
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit WallpaperPackage(QObject *parent = nullptr, const QVariantList &args = QVariantList());
|
||
|
|
||
|
void initPackage(KPackage::Package *package) override;
|
||
|
void pathChanged(KPackage::Package *package) override;
|
||
|
};
|