Adds operation unset to setVar action

This commit is contained in:
Felipe Zimmerle
2017-01-17 15:04:41 -03:00
committed by Felipe Zimmerle
parent e95555132e
commit b516cc6de1
3 changed files with 17 additions and 6 deletions

View File

@@ -34,7 +34,9 @@ enum SetVarOperation {
/* read variable, substract predicate and set */
substractAndSetOperation,
/* set variable to 1 */
setToOne
setToOneOperation,
/* unset operation */
unsetOperation,
};
class SetVar : public Action {