File: jsonplugin.h

package info (click to toggle)
kcoreaddons 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,660 kB
  • sloc: cpp: 23,523; xml: 3,284; sh: 34; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
    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 JSONPLUGIN_H
#define JSONPLUGIN_H

#include <QObject>

class JsonPlugin : public QObject
{
    Q_OBJECT

public:
    explicit JsonPlugin(QObject *parent, const QVariantList &args);
};

#endif // JSONPLUGIN_H