| 2175 | } |
| 2176 | |
| 2177 | std::shared_ptr<AFIContainerManager> AFCKernelModule::GetContainerManager(std::shared_ptr<AFIEntity> pEntity) const |
| 2178 | { |
| 2179 | if (pEntity == nullptr) |
| 2180 | { |
| 2181 | return nullptr; |
| 2182 | } |
| 2183 | |
| 2184 | auto pCEnity = std::dynamic_pointer_cast<AFCEntity>(pEntity); |
| 2185 | if (pCEnity == nullptr) |
| 2186 | { |
| 2187 | return nullptr; |
| 2188 | } |
| 2189 | |
| 2190 | return pCEnity->GetContainerManager(); |
| 2191 | } |
| 2192 | |
| 2193 | std::shared_ptr<AFIEventManager> AFCKernelModule::GetEventManager(std::shared_ptr<AFIEntity> pEntity) const |
| 2194 | { |
nothing calls this directly
no outgoing calls
no test coverage detected