File indexing completed on 2024-05-19 04:42:19

0001 /*
0002     SPDX-FileCopyrightText: 2012 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "icoreobject.h"
0008 #include <interfaces/icore.h>
0009 
0010 ICoreObject::ICoreObject(QObject* parent)
0011     : QObject(parent)
0012 {}
0013 
0014 QObject* ICoreObject::self() const
0015 {
0016     return KDevelop::ICore::self();
0017 }
0018 
0019 #include "moc_icoreobject.cpp"