1 /***************************************************************************
2                          checkingstatementinfowizardpage.h  -  description
3                             -------------------
4    begin                : Sun Jul 18 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 CHECKINGSTATEMENTINFOWIZARDPAGE_H
19 #define CHECKINGSTATEMENTINFOWIZARDPAGE_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 CheckingStatementInfoWizardPage; }
33 
34 /**
35  * This class implements the CheckingStatementInfo page of the
36  * @ref KEndingBalanceDlg wizard.
37  */
38 
39 class CheckingStatementInfoWizardPage : public QWizardPage
40 {
41   Q_OBJECT
42   Q_DISABLE_COPY(CheckingStatementInfoWizardPage)
43 
44 public:
45   explicit CheckingStatementInfoWizardPage(QWidget *parent = nullptr);
46   ~CheckingStatementInfoWizardPage();
47 
48   Ui::CheckingStatementInfoWizardPage *ui;
49 };
50 
51 #endif
52