| 1234567891011121314151617181920 |
- /*
- SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
- SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
- */
- #ifndef JSONPLUGIN2_H
- #define JSONPLUGIN2_H
- #include <QObject>
- class JsonPlugin2 : public QObject
- {
- Q_OBJECT
- public:
- explicit JsonPlugin2(QObject *parent, const QVariantList &args);
- };
- #endif // JSONPLUGIN_H
|