1 /*
2     Copyright (C) 2012 George Kiagiadakis <kiagiadakis.george@gmail.com>
3 
4     This library is free software; you can redistribute it and/or
5     modify it under the terms of the GNU Lesser General Public
6     License as published by the Free Software Foundation; either
7     version 2.1 of the License, or (at your option) any later version.
8 
9     This library is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12     Lesser General Public License for more details.
13 
14     You should have received a copy of the GNU Lesser General Public License
15     along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17 
18 #ifndef MAIN_WINDOW_H
19 #define MAIN_WINDOW_H
20 
21 #include <KXmlGuiWindow>
22 
23 class MainWindow : public KXmlGuiWindow
24 {
25     Q_OBJECT
26 public:
27     explicit MainWindow(const QString &number = QString(), QWidget *parent = 0, Qt::WindowFlags f = 0);
28     virtual ~MainWindow();
29 };
30 
31 #endif // MAIN_WINDOW_H
32