File indexing completed on 2025-02-02 05:08:38
0001 // SPDX-FileCopyrightText: 2009 Volker Krause <vkrause@kde.org> 0002 // SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org> 0003 // SPDX-License-Identifier: LGPL-2.0-or-later 0004 0005 #include "setupobject.h" 0006 0007 SetupObject::SetupObject(QObject *parent) 0008 : QObject(parent) 0009 { 0010 } 0011 0012 SetupObject *SetupObject::dependsOn() const 0013 { 0014 return m_dependsOn; 0015 } 0016 0017 void SetupObject::setDependsOn(SetupObject *obj) 0018 { 0019 m_dependsOn = obj; 0020 } 0021 0022 #include "moc_setupobject.cpp"