File indexing completed on 2025-01-19 03:57:40

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2008-02-17
0007  * Description : an unit-test to convert RAW file to DNG
0008  *
0009  * SPDX-FileCopyrightText: 2012-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_RAW2DNG_UTEST_H
0016 #define DIGIKAM_RAW2DNG_UTEST_H
0017 
0018 // Qt includes
0019 
0020 #include <QString>
0021 #include <QObject>
0022 
0023 class Raw2DngTest : public QObject
0024 {
0025     Q_OBJECT
0026 
0027 public:
0028 
0029     explicit Raw2DngTest(QObject* const parent = nullptr);
0030 
0031 private Q_SLOTS:
0032 
0033     void testRaw2Dng();
0034 };
0035 
0036 #endif // DIGIKAM_RAW2DNG_UTEST_H