File indexing completed on 2024-03-24 15:26:17

0001 /*
0002     SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
0003     SPDX-FileCopyrightText: 2014 Alex Merry <alexmerry@kde.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0006 */
0007 
0008 #ifndef ALWAYSUNLOADPLUGIN_H
0009 #define ALWAYSUNLOADPLUGIN_H
0010 
0011 #include <QObject>
0012 
0013 class AlwaysUnloadPlugin : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     AlwaysUnloadPlugin(QObject *parent, const QVariantList &args);
0019 };
0020 
0021 #endif // ALWAYSUNLOADPLUGIN_H