MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / GetContainerManager

Method GetContainerManager

src/plugin/kernel/src/AFCKernelModule.cpp:2177–2191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2175}
2176
2177std::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
2193std::shared_ptr<AFIEventManager> AFCKernelModule::GetEventManager(std::shared_ptr<AFIEntity> pEntity) const
2194{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected