| 1124 | } |
| 1125 | |
| 1126 | int OPS_SetDoubleDictOutput(std::map<const char* ,double>& data) |
| 1127 | { |
| 1128 | if (cmds == 0) return 0; |
| 1129 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1130 | return interp->setDouble(data); |
| 1131 | } |
| 1132 | |
| 1133 | int OPS_SetDoubleDictListOutput(std::map<const char*, std::vector<double>>& data) |
| 1134 | { |
nothing calls this directly
no test coverage detected