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

0001 /* This file is part of the KDE project
0002  *
0003  * SPDX-FileCopyrightText: 2009 Inge Wallin <inge@lysator.liu.se>
0004  *
0005  * SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 #ifndef IMAGESHAPE_PLUGIN_H
0009 #define IMAGESHAPE_PLUGIN_H
0010 
0011 // Qt
0012 #include <QObject>
0013 #include <QVariantList>
0014 
0015 class ImageShapePlugin : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     ImageShapePlugin(QObject *parent, const QVariantList &);
0021     ~ImageShapePlugin() override {}
0022 };
0023 
0024 #endif