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

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2013-11-28
0007  * Description : a unit-test to write metadata with ExifTool and EXV constainer.
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_EXIFTOOL_APPLYCHANGES_UTEST_H
0016 #define DIGIKAM_EXIFTOOL_APPLYCHANGES_UTEST_H
0017 
0018 // Qt includes
0019 
0020 #include <QString>
0021 #include <QObject>
0022 
0023 // Local includes
0024 
0025 #include "abstractunittest.h"
0026 
0027 class ExifToolApplyChangesTest : public AbstractUnitTest
0028 {
0029     Q_OBJECT
0030 
0031 public:
0032 
0033     explicit ExifToolApplyChangesTest(QObject* const parent = nullptr);
0034 
0035 private Q_SLOTS:
0036 
0037     void testExifToolApplyChanges();
0038 };
0039 
0040 #endif // DIGIKAM_EXIFTOOL_APPLYCHANGES_UTEST_H