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

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 KACCOUNTSUMMARYPAGE_P_H
0008 #define KACCOUNTSUMMARYPAGE_P_H
0009 
0010 // ----------------------------------------------------------------------------
0011 // QT Includes
0012 
0013 // ----------------------------------------------------------------------------
0014 // KDE Includes
0015 
0016 // ----------------------------------------------------------------------------
0017 // Project Includes
0018 
0019 #include "ui_kaccountsummarypage.h"
0020 
0021 #include "wizardpage_p.h"
0022 
0023 namespace NewAccountWizard
0024 {
0025 class Wizard;
0026 
0027 class AccountSummaryPagePrivate : public WizardPagePrivate<Wizard>
0028 {
0029     Q_DISABLE_COPY(AccountSummaryPagePrivate)
0030 
0031 public:
0032     explicit AccountSummaryPagePrivate(QObject* parent) :
0033         WizardPagePrivate<Wizard>(parent),
0034         ui(new Ui::KAccountSummaryPage)
0035     {
0036     }
0037 
0038     ~AccountSummaryPagePrivate()
0039     {
0040         delete ui;
0041     }
0042 
0043     Ui::KAccountSummaryPage *ui;
0044 };
0045 }
0046 
0047 #endif