File indexing completed on 2025-02-23 04:10:58
0001 /* 0002 * SPDX-License-Identifier: GPL-3.0-or-later 0003 */ 0004 0005 #ifndef TESTKOCOLORSPACEREGISTRY_H 0006 #define TESTKOCOLORSPACEREGISTRY_H 0007 0008 #include <QObject> 0009 0010 class TestColorSpaceRegistry : public QObject 0011 { 0012 Q_OBJECT 0013 private Q_SLOTS: 0014 void testConstruction(); 0015 void testRgbU8(); 0016 void testRgbU16(); 0017 void testLab(); 0018 }; 0019 0020 #endif