File indexing completed on 2024-05-12 15:59:35

0001 /*
0002  *  SPDX-FileCopyrightText: 2007 Cyrille Berger <cberger@cberger.net>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #include "KoColorTransformationFactory.h"
0008 
0009 struct Q_DECL_HIDDEN KoColorTransformationFactory::Private {
0010     QString id;
0011 };
0012 
0013 KoColorTransformationFactory::KoColorTransformationFactory(const QString &id)
0014     : d(new Private)
0015 {
0016     d->id = id;
0017 }
0018 
0019 KoColorTransformationFactory::~KoColorTransformationFactory()
0020 {
0021     delete d;
0022 }
0023 
0024 QString KoColorTransformationFactory::id() const
0025 {
0026     return d->id;
0027 }