MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_expanse()

std::shared_ptr< Expanse > MayaFlux::Nexus::Fabric::get_expanse ( uint32_t  id) const

Look up a registered Expanse by id.

Returns
The Expanse, or nullptr if id is not registered.

Definition at line 345 of file Fabric.cpp.

346{
347 auto it = m_expanses.find(id);
348 return it != m_expanses.end() ? it->second : nullptr;
349}
std::unordered_map< uint32_t, std::shared_ptr< Expanse > > m_expanses
Definition Fabric.hpp:293

References m_expanses.