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

◆ get_registered_extensions()

std::vector< std::string > MayaFlux::IO::VolumeWriterRegistry::get_registered_extensions ( ) const
inline

Definition at line 158 of file VolumeWriter.hpp.

159 {
160 std::vector<std::string> exts;
161 exts.reserve(m_factories.size());
162 for (const auto& [ext, _] : m_factories) {
163 exts.push_back(ext);
164 }
165 return exts;
166 }
std::unordered_map< std::string, VolumeWriterFactory > m_factories