File indexing completed on 2025-03-09 03:50:50

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-12-23
0007  * Description : Autodetect align_image_stack binary program and version
0008  *
0009  * SPDX-FileCopyrightText: 2009-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  * SPDX-FileCopyrightText: 2012-2015 by Benjamin Girault <benjamin dot girault at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_ALIGN_BINARY_H
0017 #define DIGIKAM_ALIGN_BINARY_H
0018 
0019 // Local includes
0020 
0021 #include "dbinaryiface.h"
0022 
0023 using namespace Digikam;
0024 
0025 namespace DigikamGenericExpoBlendingPlugin
0026 {
0027 
0028 class AlignBinary : public DBinaryIface
0029 {
0030     Q_OBJECT
0031 
0032 public:
0033 
0034     explicit AlignBinary();
0035     ~AlignBinary() override;
0036 
0037 private:
0038 
0039     // Disable
0040     explicit AlignBinary(QObject*) = delete;
0041 };
0042 
0043 } // namespace DigikamGenericExpoBlendingPlugin
0044 
0045 #endif // DIGIKAM_ALIGN_BINARY_H