| 213 | } |
| 214 | |
| 215 | void NamespaceManager::attachKeyObservers() |
| 216 | { |
| 217 | // May not be called with empty namespace |
| 218 | assert(_namespace); |
| 219 | |
| 220 | // Traverse the entity |
| 221 | _entity.forEachEntityKeyValue([this](const std::string& key, EntityKeyValue& value) |
| 222 | { |
| 223 | attachKeyObserver(key, value); |
| 224 | }); |
| 225 | } |
| 226 | |
| 227 | void NamespaceManager::detachKeyObserver(const std::string& key, EntityKeyValue& keyValue) |
| 228 | { |
nothing calls this directly
no test coverage detected