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

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-11-13
0007  * Description : a tool to blend bracketed images.
0008  *
0009  * SPDX-FileCopyrightText: 2009-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_EXPO_BLENDING_LAST_PAGE_H
0016 #define DIGIKAM_EXPO_BLENDING_LAST_PAGE_H
0017 
0018 // Local includes
0019 
0020 #include "dwizardpage.h"
0021 
0022 using namespace Digikam;
0023 
0024 namespace DigikamGenericExpoBlendingPlugin
0025 {
0026 class ExpoBlendingManager;
0027 
0028 class ExpoBlendingLastPage : public DWizardPage
0029 {
0030     Q_OBJECT
0031 
0032 public:
0033 
0034     explicit ExpoBlendingLastPage(ExpoBlendingManager* const mngr, QWizard* const dlg);
0035     ~ExpoBlendingLastPage() override;
0036 
0037 private:
0038 
0039     class Private;
0040     Private* const d;
0041 };
0042 
0043 } // namespace DigikamGenericExpoBlendingPlugin
0044 
0045 #endif // DIGIKAM_EXPO_BLENDING_LAST_PAGE_H