Z-Sharp/ZSharp/main.h
2022-01-29 18:10:56 -05:00

11 lines
254 B
C++

#ifndef MAIN_H
#define MAIN_H
using namespace std;
boost::any ExecuteFunction(const string& functionName, const vector<boost::any>& inputVarVals);
boost::any EvalExpression(const string& ex, unordered_map<string, boost::any>& variableValues);
#endif