File indexing completed on 2024-06-09 04:27:19

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