diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-29 19:11:23 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-29 19:11:23 +0200 |
| commit | 74d0a4a6f634010db71d05536cffef15bfb1edd9 (patch) | |
| tree | 89817f43c61fbfd2edda120276f33c5cd75ad92b /mainwindow.h | |
| download | GUI_SS2015-74d0a4a6f634010db71d05536cffef15bfb1edd9.tar.gz GUI_SS2015-74d0a4a6f634010db71d05536cffef15bfb1edd9.zip | |
Initial Commit
Diffstat (limited to 'mainwindow.h')
| -rw-r--r-- | mainwindow.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..87080d1 --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,26 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> +#include <QDebug> +#include "dlgpreferences.h" + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private slots: + void on_action_Preferences_triggered(); +private: + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H |
