| 450 | } |
| 451 | |
| 452 | Py::Object ParameterGrpPy::getUnsigneds(const Py::Tuple& args) |
| 453 | { |
| 454 | char* filter = nullptr; |
| 455 | if (!PyArg_ParseTuple(args.ptr(), "|s", &filter)) { |
| 456 | throw Py::Exception(); |
| 457 | } |
| 458 | |
| 459 | std::vector<std::pair<std::string, unsigned long>> map = _cParamGrp->GetUnsignedMap(filter); |
| 460 | Py::List list; |
| 461 | for (const auto& it : map) { |
| 462 | list.append(Py::String(it.first)); |
| 463 | } |
| 464 | |
| 465 | return list; // NOLINT |
| 466 | } |
| 467 | |
| 468 | Py::Object ParameterGrpPy::setFloat(const Py::Tuple& args) |
| 469 | { |
nothing calls this directly
no test coverage detected