1 /***************************************************************************
2                          variableinterestdatewizardpage  -  description
3                             -------------------
4    begin                : Sun Jul 4 2010
5    copyright            : (C) 2010 by Fernando Vilas
6    email                : kmymoney-devel@kde.org
7 ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef VARIABLEINTERESTDATEWIZARDPAGE_H
19 #define VARIABLEINTERESTDATEWIZARDPAGE_H
20 
21 // ----------------------------------------------------------------------------
22 // QT Includes
23 
24 #include <QWizardPage>
25 
26 // ----------------------------------------------------------------------------
27 // KDE Includes
28 
29 // ----------------------------------------------------------------------------
30 // Project Includes
31 
32 namespace Ui { class VariableInterestDateWizardPage; }
33 
34 /**
35  * This class implements the Variable Interest Date page of the
36  * @ref KNewLoanWizard.
37  */
38 
39 class VariableInterestDateWizardPage : public QWizardPage
40 {
41   Q_OBJECT
42 public:
43   explicit VariableInterestDateWizardPage(QWidget *parent = nullptr);
44   ~VariableInterestDateWizardPage();
45 
46 private:
47   Ui::VariableInterestDateWizardPage *ui;
48 };
49 
50 #endif
51