alwaysunloadplugin.h 475 B

123456789101112131415161718192021
  1. /*
  2. SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
  3. SPDX-FileCopyrightText: 2014 Alex Merry <alexmerry@kde.org>
  4. SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
  5. */
  6. #ifndef ALWAYSUNLOADPLUGIN_H
  7. #define ALWAYSUNLOADPLUGIN_H
  8. #include <QObject>
  9. class AlwaysUnloadPlugin : public QObject
  10. {
  11. Q_OBJECT
  12. public:
  13. AlwaysUnloadPlugin(QObject *parent, const QVariantList &args);
  14. };
  15. #endif // ALWAYSUNLOADPLUGIN_H