Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_emboss_filter_plugin.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: Michael Thaler <michael.thaler@physik.tu-muenchen.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef _KIS_EMBOSS_FILTER_PLUGIN_H_
8#define _KIS_EMBOSS_FILTER_PLUGIN_H_
9
10#include <QObject>
11#include <QVariant>
12
13class KisEmbossFilterPlugin : public QObject
14{
15 Q_OBJECT
16public:
17 KisEmbossFilterPlugin(QObject *parent, const QVariantList &);
18 ~KisEmbossFilterPlugin() override;
19};
20
21#endif
22
KisEmbossFilterPlugin(QObject *parent, const QVariantList &)