aboutsummaryrefslogtreecommitdiff
path: root/script.h
diff options
context:
space:
mode:
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>&);
};