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