File indexing completed on 2024-05-26 04:33:10

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