unversionedplugin.h 470 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 UNVERSIONEDPLUGIN_H
  7. #define UNVERSIONEDPLUGIN_H
  8. #include <QObject>
  9. class UnversionedPlugin : public QObject
  10. {
  11. Q_OBJECT
  12. public:
  13. UnversionedPlugin(QObject *parent, const QVariantList &args);
  14. };
  15. #endif // UNVERSIONEDPLUGIN_H