summaryrefslogtreecommitdiff
path: root/client/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r--client/mainwindow.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/client/mainwindow.h b/client/mainwindow.h
index 00300f4..d60db9d 100644
--- a/client/mainwindow.h
+++ b/client/mainwindow.h
@@ -29,10 +29,13 @@
#include <QMainWindow>
#include <QMap>
+#include <QVector>
#include <QPushButton>
#include "netcom.h"
#include "macrowindow.h"
+#include "macro.h"
+
class MainWindow : public QMainWindow {
Q_OBJECT
public:
@@ -45,10 +48,13 @@ public slots:
void update();
private:
+ void updateCourseHeaders(QDomNode coursenode);
+
QString course;
NetCom netcom;
- QMap< QString, MacroWindow* > macros;
+ // QMap< QString, MacroWindow* > macros;
+ Macros macros;
QWidget *w;
QLabel *header;