find container
| 24 | |
| 25 | // find container |
| 26 | std::shared_ptr<AFIContainer> AFCContainerManager::FindContainer(const uint32_t index) const |
| 27 | { |
| 28 | return container_data_.find_value(index); |
| 29 | } |
| 30 | |
| 31 | std::shared_ptr<AFIContainer> AFCContainerManager::CreateContainer( |
| 32 | std::shared_ptr<AFClassMeta> pClassMeta, const uint32_t index, const AFGUID& parent_id) |
nothing calls this directly
no test coverage detected