diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-06-14 20:30:37 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-06-14 20:34:10 +0200 |
| commit | 7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b (patch) | |
| tree | 34e5398f57392eef2ce4c480199a5793a0c84730 /mainwindow.h | |
| download | BankProgramm-7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b.tar.gz BankProgramm-7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b.zip | |
Initial commit of the work on the bank parser.
Diffstat (limited to 'mainwindow.h')
| -rw-r--r-- | mainwindow.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..d8c3727 --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,33 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include "bank.h" + +#include <QMainWindow> +#include <QDebug> +#include <QFile> +#include <QFileDialog> +#include <QStandardPaths> + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private slots: + void on_actionLoad_triggered(); + +private: + Ui::MainWindow *ui; + + QList<Bank*> m_Banken; +}; + +#endif // MAINWINDOW_H |
