Krita Source Code Documentation
Loading...
Searching...
No Matches
KoColorTransformationFactory.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2007 Cyrille Berger <cberger@cberger.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
8
9struct Q_DECL_HIDDEN KoColorTransformationFactory::Private {
10 QString id;
11};
12
14 : d(new Private)
15{
16 d->id = id;
17}
18
23
25{
26 return d->id;
27}