File indexing completed on 2024-06-16 04:13:39

0001 /*
0002  *  SPDX-FileCopyrightText: 2010 Cyrille Berger <cberger@cberger.net>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef _TEST_KO_COLOR_SPACE_REGISTRY_H_
0008 #define _TEST_KO_COLOR_SPACE_REGISTRY_H_
0009 
0010 #include <QObject>
0011 
0012 class TestBaseColorSpaceRegistry : public QObject
0013 {
0014     Q_OBJECT
0015 public:
0016     TestBaseColorSpaceRegistry();
0017 private Q_SLOTS:
0018     void testLab16();
0019     void testRgb8();
0020     void testRgb16();
0021     void testProfileByUniqueId();
0022 };
0023 
0024 #endif