Get the default reader associated with an extension. Extensions are specified without the leading '.'
| 124 | // Get the default reader associated with an extension. Extensions |
| 125 | // are specified without the leading '.' |
| 126 | std::string StageExtensions::defaultReader(const std::string& extension) |
| 127 | { |
| 128 | load(); |
| 129 | std::lock_guard<std::mutex> lock(m_mutex); |
| 130 | return (m_readers[extension]); |
| 131 | } |
| 132 | |
| 133 | |
| 134 | // Get the default writer associated with an extension. Extensions |
no test coverage detected