Krita Source Code Documentation
Loading...
Searching...
No Matches
gaussianhighpass.h
Go to the documentation of this file.
1/*
2 * This file is part of Krita
3 *
4 * SPDX-FileCopyrightText: 2019 Miguel Lopez <reptillia39@live.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef _GAUSSIANHIGHPASS_PLUGIN_H_
10#define _GAUSSIANHIGHPASS_PLUGIN_H_
11
12#include <QObject>
13#include <QVariant>
14
15class GaussianHighPassPlugin : public QObject
16{
17 Q_OBJECT
18public:
19 GaussianHighPassPlugin(QObject *parent, const QVariantList &);
20 ~GaussianHighPassPlugin() override;
21};
22
23#endif
GaussianHighPassPlugin(QObject *parent, const QVariantList &)