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

◆ get_registered_extensions()

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

Definition at line 111 of file ImageWriter.hpp.

112 {
113 std::vector<std::string> exts;
114 exts.reserve(m_factories.size());
115 for (const auto& [ext, _] : m_factories) {
116 exts.push_back(ext);
117 }
118 return exts;
119 }
std::unordered_map< std::string, ImageWriterFactory > m_factories