File indexing completed on 2025-07-13 04:07:32
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