File indexing completed on 2024-06-16 04:16:46

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