File indexing completed on 2024-04-21 03:56:32

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aaron Seigo <aseigo@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "packagestructure.h"
0008 #include "kpackage_debug.h"
0009 #include "packagejob.h"
0010 #include "private/package_p.h"
0011 
0012 namespace KPackage
0013 {
0014 PackageStructure::PackageStructure(QObject *parent, const QVariantList & /*args*/)
0015     : QObject(parent)
0016 {
0017     Q_UNUSED(d)
0018 }
0019 
0020 PackageStructure::~PackageStructure()
0021 {
0022 }
0023 
0024 void PackageStructure::initPackage(Package * /*package*/)
0025 {
0026 }
0027 
0028 void PackageStructure::pathChanged(Package * /*package*/)
0029 {
0030 }
0031 
0032 }
0033 
0034 #include "moc_packagestructure.cpp"