aboutsummaryrefslogtreecommitdiff
path: root/script.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-12-23 21:37:01 +0100
committertomsmeding <tom.smeding@gmail.com>2016-12-23 21:37:01 +0100
commit7996525bfd7acfdaeebb65a63e8e6bcf9d73d7b4 (patch)
treee7b66877a79ca0c3fca997059da9bd0bc11a9973 /script.h
parentba869e07df4824a13b5b90f18aa5be8a0f3cc9c3 (diff)
Some changes that were lying aroundHEADmaster
Diffstat (limited to 'script.h')
-rw-r--r--script.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/script.h b/script.h
index 05427ca..393bb45 100644
--- a/script.h
+++ b/script.h
@@ -27,6 +27,8 @@ bool validateExprNodeType(ExprNodeType);
struct Expression {
ExprNodeType type;
vector<Expression> args;
+ int intval;
+ string varname;
int evaluate(unordered_map<string,QueryResult>&);
};