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

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