jsonplugin2.h 384 B

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