File indexing completed on 2024-06-23 04:26:59

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 #ifndef _KIS_PIXELIZE_FILTER_PLUGIN_H_
0009 #define _KIS_PIXELIZE_FILTER_PLUGIN_H_
0010 
0011 #include <QObject>
0012 #include <QVariant>
0013 
0014 class KisPixelizeFilterPlugin : public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     KisPixelizeFilterPlugin(QObject *parent, const QVariantList &);
0019     ~KisPixelizeFilterPlugin() override;
0020 };
0021 
0022 #endif