| 158 | } |
| 159 | |
| 160 | void SpawnArgs::forEachEntityKeyValue(const EntityKeyValueVisitFunctor& func) |
| 161 | { |
| 162 | for (const KeyValuePair& pair : _keyValues) |
| 163 | { |
| 164 | func(pair.first, *pair.second); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | void SpawnArgs::setKeyValue(const std::string& key, const std::string& value) |
| 169 | { |
no outgoing calls
no test coverage detected