File indexing completed on 2024-04-28 11:43:50

0001 /*
0002     SPDX-FileCopyrightText: 2007 Aaron Seigo <aseigo@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PLASMOIDSTRUCTURE_P_H
0008 #define PLASMOIDSTRUCTURE_P_H
0009 
0010 #include "kpackage/packagestructure.h"
0011 
0012 namespace KPackage
0013 {
0014 class PlasmoidPackage : public KPackage::PackageStructure
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     // Needed for K_PLUGIN_CLASS_WITH_JSON macro
0020     explicit PlasmoidPackage(QObject *parent = nullptr, const QVariantList &args = QVariantList())
0021         : KPackage::PackageStructure()
0022     {
0023         Q_UNUSED(parent)
0024         Q_UNUSED(args)
0025     }
0026     void initPackage(Package *package) override;
0027 };
0028 
0029 } // namespace KPackage
0030 
0031 #endif // PLASMOIDSTRUCTURE_P_H