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

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