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 #ifndef KDEVPLATFORM_PLUGIN_ICOREOBJECT_H
0008 #define KDEVPLATFORM_PLUGIN_ICOREOBJECT_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop {
0013     class ICore;
0014 }
0015 
0016 class ICoreObject : public QObject
0017 {
0018     Q_OBJECT
0019     Q_PROPERTY(QObject* self READ self CONSTANT)
0020     public:
0021         explicit ICoreObject(QObject* parent = nullptr);
0022         
0023         QObject* self() const;
0024 };
0025 
0026 #endif // KDEVPLATFORM_PLUGIN_ICOREOBJECT_H