diff options
Diffstat (limited to 'command.hh')
-rw-r--r-- | command.hh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/command.hh b/command.hh index 6b835e964b..3e90067075 100644 --- a/command.hh +++ b/command.hh @@ -1,7 +1,7 @@ #ifndef COMMAND_HH #define COMMAND_HH #include "glob.hh" -#include "mtime.hh" + #include "vray.hh" #include "string.hh" @@ -15,9 +15,13 @@ enum Commandcode { struct Command { Commandcode code; - Mtime when; + Real when; /// analogous to argv[] svec<String> args; + int priority; + + /****************/ + Command(); Command(Real w); bool isbreak()const; |