Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_separate_channels_plugin.h
Go to the documentation of this file.
1/*
2 * This file is part of Krita
3 *
4 * SPDX-FileCopyrightText: Michael Thaler <michael.thaler@physik.tu-muenchen.de>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef _KIS_SEPARATE_CHANNELS_PLUGIN_H_
10#define _KIS_SEPARATE_CHANNELS_PLUGIN_H_
11
12#include <QVariant>
13
14#include <KisActionPlugin.h>
15
17{
18 Q_OBJECT
19public:
20 KisSeparateChannelsPlugin(QObject *parent, const QVariantList &);
22
23private Q_SLOTS:
24
25 void slotSeparate();
26};
27
28#endif
KisSeparateChannelsPlugin(QObject *parent, const QVariantList &)