Work to add C style entry points to library that allow most functionality

This commit is contained in:
2019-06-05 17:46:46 +02:00
parent 6206fef4c5
commit 43dede9ae2
14 changed files with 169 additions and 79 deletions

View File

@@ -15,6 +15,7 @@ using namespace std;
class Evaluator {
shared_ptr<EvalValue> _result;
shared_ptr<EvalValue> _lastValue;
Script* _scriptData;
EvaluationScope* _evaluationScope;
@@ -57,7 +58,9 @@ public:
return _evaluationScope;
}
EvalValue* GetLastValue(){
return _lastValue.get();
}
};