digiKam
Loading...
Searching...
No Matches
exiftoolthread.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2022-05-13
7 * Description : ExifTool thread for the ExifTool process
8 *
9 * SPDX-FileCopyrightText: 2021-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2022 by Maik Qualmann <metzpinguin at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QThread>
21
22// Local includes
23
24#include "digikam_export.h"
25
26namespace Digikam
27{
28
29class DIGIKAM_EXPORT ExifToolThread : public QThread
30{
31 Q_OBJECT
32
33public:
34
35 explicit ExifToolThread(QObject* const parent);
36 ~ExifToolThread() override;
37
38Q_SIGNALS:
39
41
42protected:
43
47 void run() override;
48};
49
50} // namespace Digikam
Definition exiftoolthread.h:30
Definition datefolderview.cpp:34