Warning, file /graphics/krita/plugins/extensions/waveletdecompose/waveletdecompose.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  * SPDX-FileCopyrightText: 2016 Miroslav Talasek <miroslav.talasek@seznam.cz>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 #ifndef WAVELETDECOMPOSE_H
0007 #define WAVELETDECOMPOSE_H
0008 
0009 #include <QVariant>
0010 
0011 #include <QUrl>
0012 #include <KisActionPlugin.h>
0013 
0014 class WaveletDecompose : public KisActionPlugin
0015 {
0016     Q_OBJECT
0017 public:
0018     WaveletDecompose(QObject *parent, const QVariantList &);
0019     ~WaveletDecompose() override;
0020 
0021 private Q_SLOTS:
0022 
0023     void slotWaveletDecompose();
0024 
0025 };
0026 
0027 #endif // WAVELETDECOMPOSE_H