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

◆ shutdown()

void MayaFlux::Core::SubsystemManager::shutdown ( )

Shutdown all subsystems in proper order.

Definition at line 211 of file SubsystemManager.cpp.

212{
213 for (auto& [token, subsystem] : m_subsystems) {
214 if (subsystem && subsystem->is_ready()) {
215 subsystem->shutdown();
216 }
217 }
218 m_subsystems.clear();
219}
std::unordered_map< SubsystemType, std::shared_ptr< ISubsystem > > m_subsystems

References m_subsystems.