diff options
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r-- | client/mainwindow.h | 8 |
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; |