Get the default writer associated with an extension. Extensions are specified without the leading '.'
| 134 | // Get the default writer associated with an extension. Extensions |
| 135 | // are specified without the leading '.' |
| 136 | std::string StageExtensions::defaultWriter(const std::string& extension) |
| 137 | { |
| 138 | load(); |
| 139 | std::lock_guard<std::mutex> lock(m_mutex); |
| 140 | return (m_writers[extension]); |
| 141 | } |
| 142 | |
| 143 | |
| 144 | StringList StageExtensions::extensions(const std::string& stage) |
no test coverage detected