Krita Source Code Documentation
Loading...
Searching...
No Matches
histogramdocker.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016 Eugene Ingerman <geneing at gmail dot com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef _HISTOGRAM_DOCKER_H_
8#define _HISTOGRAM_DOCKER_H_
9
10#include <QObject>
11#include <QVariant>
12
13class KisViewManager;
14
18class HistogramDockerPlugin : public QObject
19{
20 Q_OBJECT
21 public:
22 HistogramDockerPlugin(QObject *parent, const QVariantList &);
23 ~HistogramDockerPlugin() override;
24};
25
26#endif
HistogramDockerPlugin(QObject *parent, const QVariantList &)