File indexing completed on 2025-01-26 04:10:27

0001 /*
0002  * modify_selection.h -- Part of Krita
0003  *
0004  * SPDX-FileCopyrightText: 2006 Michael Thaler (michael.thaler@physik.tu-muenchen.de)
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 #ifndef MODIFY_SELECTION_H
0009 #define MODIFY_SELECTION_H
0010 
0011 #include <QVariant>
0012 
0013 #include <KisActionPlugin.h>
0014 
0015 class ModifySelection : public KisActionPlugin
0016 {
0017     Q_OBJECT
0018 public:
0019     ModifySelection(QObject *parent, const QVariantList &);
0020     ~ModifySelection() override;
0021 };
0022 
0023 #endif // MODIFY_SELECTION_H