File indexing completed on 2024-12-22 04:15:31

0001 /*
0002  * KDE. Krita Project.
0003  *
0004  * SPDX-FileCopyrightText: 2020 Deif Lou <ginoba@gmail.com>
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef KISGRADIENTGENERATORPLUGIN_H
0010 #define KISGRADIENTGENERATORPLUGIN_H
0011 
0012 #include <QObject>
0013 
0014 class KisGradientGeneratorPlugin : public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     KisGradientGeneratorPlugin(QObject *parent, const QVariantList &);
0019     ~KisGradientGeneratorPlugin() override;
0020 };
0021 
0022 #endif