File indexing completed on 2024-05-12 05:08:07

0001 /*
0002     SPDX-FileCopyrightText: 2006 Thomas Baumagrt <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 WIZARDPAGE_P_H
0008 #define WIZARDPAGE_P_H
0009 
0010 // ----------------------------------------------------------------------------
0011 // QT Includes
0012 
0013 // ----------------------------------------------------------------------------
0014 // KDE Includes
0015 
0016 // ----------------------------------------------------------------------------
0017 // Project Includes
0018 
0019 #include "kmymoneywizardpage_p.h"
0020 
0021 class KMyMoneyWizard;
0022 
0023 template <class T>
0024 class WizardPagePrivate : public KMyMoneyWizardPagePrivate
0025 {
0026 public:
0027     WizardPagePrivate(QObject* parent) :
0028         KMyMoneyWizardPagePrivate(parent),
0029         m_wizard(nullptr),
0030         m_wizardBase(nullptr)
0031     {
0032     }
0033 
0034     T*                m_wizard;
0035     KMyMoneyWizard*   m_wizardBase;
0036 };
0037 
0038 #endif