1 /***************************************************************************
2                          interesttypewizardpage  -  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 INTERESTTYPEWIZARDPAGE_H
19 #define INTERESTTYPEWIZARDPAGE_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 InterestTypeWizardPage; }
33 
34 /**
35  * This class implements the Interest Type page of the
36  * @ref KNewLoanWizard.
37  */
38 
39 class InterestTypeWizardPage : public QWizardPage
40 {
41   Q_OBJECT
42 public:
43   explicit InterestTypeWizardPage(QWidget *parent = nullptr);
44   ~InterestTypeWizardPage();
45 
46   Ui::InterestTypeWizardPage *ui;
47 };
48 
49 #endif
50