| 1097 | } |
| 1098 | |
| 1099 | int OPS_GetDoubleListInput(int* size, Vector* data) |
| 1100 | { |
| 1101 | if (cmds == 0) return 0; |
| 1102 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1103 | return interp->getDoubleList(size, data); |
| 1104 | } |
| 1105 | |
| 1106 | int OPS_EvalDoubleStringExpression(const char* theExpression, double& current_val) { |
| 1107 | if (cmds == 0) return 0; |
nothing calls this directly
no test coverage detected