diff options
author | deva <deva> | 2010-08-12 10:57:04 +0000 |
---|---|---|
committer | deva <deva> | 2010-08-12 10:57:04 +0000 |
commit | d9338083192084613e5530b02710b796252d342b (patch) | |
tree | e0ec2b36e0de62328e5fd5d3b597f6ee71d1b18f /client/macro.h | |
parent | dbab8458dcce186e7eb7a114a83f759d7db5445a (diff) |
New scripting system part2.
Diffstat (limited to 'client/macro.h')
-rw-r--r-- | client/macro.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/macro.h b/client/macro.h index 20a4e14..b1b8032 100644 --- a/client/macro.h +++ b/client/macro.h @@ -34,9 +34,10 @@ #include <QDomNode> #include <QBoxLayout> -#include "macrowindow.h" +#include "netcom.h" class Macro; +class MacroWindow; typedef QMap<QString, Macro> Macros; class MacroDrawer; @@ -46,7 +47,8 @@ public: Macro() {} Macro(QDomNode &node); - void init(QBoxLayout *layout, Macros ¯os, bool initialising, NetCom &netcom, QString templ); + void init(QBoxLayout *layout, Macros ¯os, bool initialising, + NetCom &netcom, QString templ); void update(QDomNode &node); |