mirror of
https://github.com/sam-astro/Z-Sharp.git
synced 2025-12-10 15:52:12 +00:00
11 lines
254 B
C++
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
|