| 96 | } |
| 97 | |
| 98 | void DynamicProperty::getPropertyList(std::vector<Property*>& List) const |
| 99 | { |
| 100 | for (auto& v : impl->props.get<0>()) { |
| 101 | List.push_back(v.property); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | void DynamicProperty::getPropertyNamedList( |
| 106 | std::vector<std::pair<const char*, Property*>>& List) const |
no test coverage detected