diff options
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 |
