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

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 TESTCHANNEL_H
0007 #define TESTCHANNEL_H
0008 
0009 #include <QObject>
0010 
0011 class TestChannel : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testPixelDataU8();
0016     void testPixelDataU16();
0017     void testPixelDataF16();
0018     void testPixelDataF32();
0019     void testReadWritePixelData();
0020 };
0021 
0022 #endif
0023