File indexing completed on 2024-05-26 05:10:15

0001 /*
0002     SPDX-FileCopyrightText: 2010 Fernando Vilas <kmymoney-devel@kde.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef CALCULATIONOVERVIEWWIZARDPAGE_H
0007 #define CALCULATIONOVERVIEWWIZARDPAGE_H
0008 
0009 // ----------------------------------------------------------------------------
0010 // QT Includes
0011 
0012 #include <QWizardPage>
0013 
0014 // ----------------------------------------------------------------------------
0015 // KDE Includes
0016 
0017 // ----------------------------------------------------------------------------
0018 // Project Includes
0019 
0020 namespace Ui {
0021 class CalculationOverviewWizardPage;
0022 }
0023 
0024 /**
0025  * This class implements the Calculation Overview page of the
0026  * @ref KNewLoanWizard.
0027  */
0028 
0029 class CalculationOverviewWizardPage : public QWizardPage
0030 {
0031     Q_OBJECT
0032 public:
0033     explicit CalculationOverviewWizardPage(QWidget *parent = nullptr);
0034     ~CalculationOverviewWizardPage();
0035 
0036 private:
0037     Ui::CalculationOverviewWizardPage *ui;
0038 };
0039 
0040 #endif