summaryrefslogtreecommitdiff
path: root/client/mainwindow.h
diff options
context:
space:
mode:
authordeva <deva>2009-06-30 17:31:53 +0000
committerdeva <deva>2009-06-30 17:31:53 +0000
commit9a773bc9ed736301b5ac6f6f8798056194398011 (patch)
treea113908743936aea97975adb6f4f1c7f49e6b007 /client/mainwindow.h
parentb31e7fba17d1e5c1264c0829c4da258c32aa80c3 (diff)
Removed console on win32 unless, compiled in debug mode. First attempt on a macro dependency system.
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;