summaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h
index 7fb7386..1ba0e2b 100644
--- a/src/command.h
+++ b/src/command.h
@@ -23,6 +23,8 @@
#define checkCommand(val) ((command & Command::val) == Command::val)
#define disableCommand(val) command = static_cast<Command>(static_cast<int>( \
command | Command::val) ^ static_cast<int>(Command::val))
+#define enableCommand(val) command = static_cast<Command>(static_cast<int>( \
+ command | Command::val))
enum Command : int
{
@@ -38,5 +40,6 @@ enum Command : int
};
extern Command command;
+extern std::string dumpFile;
#endif // COMMAND_H