comparison gui/src/welcomewizard.h @ 14703:f86884be20fc gui

Renamed all source files of the gui to lowercase and .cc to be conform with the octave sources.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Thu, 31 May 2012 20:53:56 +0200
parents gui/src/WelcomeWizard.h@faece6b2ab90
children
comparison
equal deleted inserted replaced
14701:06abf71d9083 14703:f86884be20fc
1 /* OctaveGUI - A graphical user interface for Octave
2 * Copyright (C) 2011 Jacob Dawid (jacob.dawid@googlemail.com)
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program 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
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef WELCOMEWIZARD_H
19 #define WELCOMEWIZARD_H
20
21 #include <QDialog>
22
23 namespace Ui {
24 class WelcomeWizard;
25 }
26
27 class WelcomeWizard : public QDialog
28 {
29 Q_OBJECT
30
31 public:
32 explicit WelcomeWizard(QWidget *parent = 0);
33 ~WelcomeWizard();
34
35 public slots:
36 void next ();
37 void previous ();
38
39 private:
40 Ui::WelcomeWizard *ui;
41 };
42
43 #endif // WELCOMEWIZARD_H