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