1 /***************************************************************************
2                              kloandetailspage.cpp
3                              -------------------
4     begin                : Tue Sep 25 2006
5     copyright            : (C) 2007 Thomas Baumgart
6     email                : Thomas Baumgart <ipwizard@users.sourceforge.net>
7                            (C) 2017 by Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
8  ***************************************************************************/
9 
10 /***************************************************************************
11  *                                                                         *
12  *   This program is free software; you can redistribute it and/or modify  *
13  *   it under the terms of the GNU General Public License as published by  *
14  *   the Free Software Foundation; either version 2 of the License, or     *
15  *   (at your option) any later version.                                   *
16  *                                                                         *
17  ***************************************************************************/
18 
19 #ifndef KLOANDETAILSPAGE_P_H
20 #define KLOANDETAILSPAGE_P_H
21 
22 // ----------------------------------------------------------------------------
23 // QT Includes
24 
25 // ----------------------------------------------------------------------------
26 // KDE Includes
27 
28 // ----------------------------------------------------------------------------
29 // Project Includes
30 
31 #include "ui_kloandetailspage.h"
32 
33 #include "wizardpage_p.h"
34 
35 namespace NewAccountWizard
36 {
37   class Wizard;
38 
39   class LoanDetailsPagePrivate : public WizardPagePrivate<Wizard>
40   {
Q_DISABLE_COPY(LoanDetailsPagePrivate)41     Q_DISABLE_COPY(LoanDetailsPagePrivate)
42 
43   public:
44     explicit LoanDetailsPagePrivate(QObject* parent) :
45       WizardPagePrivate<Wizard>(parent),
46       ui(new Ui::KLoanDetailsPage),
47       m_needCalculate(false)
48     {
49     }
50 
~LoanDetailsPagePrivate()51     ~LoanDetailsPagePrivate()
52     {
53       delete ui;
54     }
55 
56     Ui::KLoanDetailsPage *ui;
57     bool m_needCalculate;
58   };
59 }
60 
61 #endif
62