File indexing completed on 2024-05-26 04:34:32

0001 /* This file is part of the KDE project
0002  *
0003  * SPDX-FileCopyrightText: 2017 Boudewijn Rempt <boud@valdyas.org>
0004  *
0005  * SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 #ifndef SVG_TEXT_TOOL_PLUGIN_H
0009 #define SVG_TEXT_TOOL_PLUGIN_H
0010 
0011 #include <QObject>
0012 #include <QVariantList>
0013 
0014 class Plugin : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     Plugin(QObject *parent, const QVariantList &);
0020     ~Plugin() {}
0021 };
0022 
0023 #endif
0024