1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date        : 2005-05-25
7  * Description : threaded image analys class.
8  *
9  * Copyright (C) 2012-2021 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #include "dimgthreadedanalyser.h"
25 
26 namespace Digikam
27 {
28 
DImgThreadedAnalyser(QObject * const parent,const QString & name)29 DImgThreadedAnalyser::DImgThreadedAnalyser(QObject* const parent, const QString& name)
30     : DImgThreadedFilter(parent, name)
31 {
32 }
33 
DImgThreadedAnalyser(DImg * const orgImage,QObject * const parent,const QString & name)34 DImgThreadedAnalyser::DImgThreadedAnalyser(DImg* const orgImage, QObject* const parent,
35                                            const QString& name)
36     : DImgThreadedFilter(orgImage, parent, name)
37 {
38 }
39 
~DImgThreadedAnalyser()40 DImgThreadedAnalyser::~DImgThreadedAnalyser()
41 {
42 }
43 
44 } // namespace Digikam
45