File indexing completed on 2024-05-26 04:29:20

0001 /*
0002  *  SPDX-License-Identifier: GPL-3.0-or-later
0003  */
0004 
0005 #ifndef TestColorConversion_H
0006 #define TestColorConversion_H
0007 
0008 #include <QObject>
0009 
0010 class TestColorConversion : public QObject
0011 {
0012     Q_OBJECT
0013 private Q_SLOTS:
0014     void testRGBHSV();
0015     void testRGBHSL();
0016 };
0017 
0018 #endif