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