File indexing completed on 2024-05-05 04:41:04

0001 /*
0002     SPDX-FileCopyrightText: 2010 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_KDEVWELCOMEPAGEPLUGIN_H
0008 #define KDEVPLATFORM_PLUGIN_KDEVWELCOMEPAGEPLUGIN_H
0009 
0010 #include <interfaces/iplugin.h>
0011 // Qt
0012 #include <QPointer>
0013 
0014 class KDevWelcomePagePlugin : public KDevelop::IPlugin
0015 {
0016     Q_OBJECT
0017 public:
0018     KDevWelcomePagePlugin( QObject* parent, const QList<QVariant>& );
0019 
0020 public:
0021     void unload() override;
0022 
0023 private:
0024     QPointer<QWidget> m_welcomePageWidget;
0025 };
0026 
0027 #endif