summaryrefslogtreecommitdiffstats
path: root/mainwindow.h
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-06-14 20:30:37 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-06-14 20:34:10 +0200
commit7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b (patch)
tree34e5398f57392eef2ce4c480199a5793a0c84730 /mainwindow.h
downloadBankProgramm-7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b.tar.gz
BankProgramm-7690b26ad7fe0966d0bf86bd1a9b3f89391b7a4b.zip
Initial commit of the work on the bank parser.
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h33
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