| 1117 | } |
| 1118 | |
| 1119 | int OPS_SetDoubleListsOutput(std::vector<std::vector<double>>& data) |
| 1120 | { |
| 1121 | if (cmds == 0) return 0; |
| 1122 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1123 | return interp->setDouble(data); |
| 1124 | } |
| 1125 | |
| 1126 | int OPS_SetDoubleDictOutput(std::map<const char* ,double>& data) |
| 1127 | { |
nothing calls this directly
no test coverage detected