| 1104 | } |
| 1105 | |
| 1106 | int OPS_EvalDoubleStringExpression(const char* theExpression, double& current_val) { |
| 1107 | if (cmds == 0) return 0; |
| 1108 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1109 | return interp->evalDoubleStringExpression(theExpression, current_val); |
| 1110 | } |
| 1111 | |
| 1112 | int OPS_SetDoubleOutput(int *numData, double *data, bool scalar) |
| 1113 | { |
nothing calls this directly
no test coverage detected