| 2515 | } |
| 2516 | |
| 2517 | void Node::get_groups(List<GroupInfo> *p_groups) const { |
| 2518 | ERR_THREAD_GUARD |
| 2519 | for (const KeyValue<StringName, GroupData> &E : data.grouped) { |
| 2520 | GroupInfo gi; |
| 2521 | gi.name = E.key; |
| 2522 | gi.persistent = E.value.persistent; |
| 2523 | p_groups->push_back(gi); |
| 2524 | } |
| 2525 | } |
| 2526 | |
| 2527 | int Node::get_persistent_group_count() const { |
| 2528 | ERR_THREAD_GUARD_V(0); |
no outgoing calls
no test coverage detected