File indexing completed on 2024-05-26 04:28:57

0001 /* This file is part of the KDE project
0002    SPDX-FileCopyrightText: 2017 Boudewijn Rempt
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef TESTNODE_H
0007 #define TESTNODE_H
0008 
0009 #include <QObject>
0010 
0011 class TestNode : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testSetColorSpace();
0016     void testSetColorProfile();
0017     void testPixelData();
0018     void testProjectionPixelData();
0019     void testThumbnail();
0020     void testMergeDown();
0021     void testFindChildNodes();
0022 };
0023 
0024 #endif
0025