| 12 | { |
| 13 | |
| 14 | void MapFormatManager::registerMapFormat(const std::string& extension, const MapFormatPtr& mapFormat) |
| 15 | { |
| 16 | _mapFormats.insert(std::make_pair(string::to_lower_copy(extension), mapFormat)); |
| 17 | } |
| 18 | |
| 19 | void MapFormatManager::unregisterMapFormat(const MapFormatPtr& mapFormat) |
| 20 | { |
no test coverage detected