File indexing completed on 2024-06-09 05:03:29

0001 /*
0002     SPDX-FileCopyrightText: 2007 Thomas Baumgart <ipwizard@users.sourceforge.net>
0003     SPDX-FileCopyrightText: 2017 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KLOANPAYOUTPAGE_P_H
0008 #define KLOANPAYOUTPAGE_P_H
0009 
0010 // ----------------------------------------------------------------------------
0011 // QT Includes
0012 
0013 // ----------------------------------------------------------------------------
0014 // KDE Includes
0015 
0016 // ----------------------------------------------------------------------------
0017 // Project Includes
0018 
0019 #include "ui_kloanpayoutpage.h"
0020 
0021 #include "wizardpage_p.h"
0022 
0023 namespace NewAccountWizard
0024 {
0025 class Wizard;
0026 
0027 class LoanPayoutPagePrivate : public WizardPagePrivate<Wizard>
0028 {
0029     Q_DISABLE_COPY(LoanPayoutPagePrivate)
0030 
0031 public:
0032     explicit LoanPayoutPagePrivate(QObject* parent) :
0033         WizardPagePrivate<Wizard>(parent),
0034         ui(new Ui::KLoanPayoutPage)
0035     {
0036     }
0037 
0038     ~LoanPayoutPagePrivate()
0039     {
0040         delete ui;
0041     }
0042 
0043     Ui::KLoanPayoutPage *ui;
0044 };
0045 }
0046 
0047 #endif