| 362 | } |
| 363 | |
| 364 | std::vector<RawNodeId> SLgetAll(FileContent* fC, RawNodeId parent, |
| 365 | uint32_t type) { |
| 366 | if (!fC) return {}; |
| 367 | return transform(fC->sl_get_all(NodeId(parent), (VObjectType)type)); |
| 368 | } |
| 369 | |
| 370 | std::vector<RawNodeId> SLgetAll(FileContent* fC, RawNodeId parent, |
| 371 | const std::vector<uint32_t>& types) { |
nothing calls this directly
no test coverage detected