File indexing completed on 2024-06-23 04:28:12

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2007 Thomas Zander <zander@kde.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 #ifndef PLUGIN_H
0007 #define PLUGIN_H
0008 
0009 #include <QObject>
0010 #include <QVariantList>
0011 
0012 class Plugin : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     Plugin(QObject *parent, const QVariantList &);
0018     ~Plugin() override {}
0019 };
0020 #endif