| 74 | } |
| 75 | |
| 76 | std::set<MapFormatPtr> MapFormatManager::getAllMapFormats() |
| 77 | { |
| 78 | std::set<MapFormatPtr> set; |
| 79 | |
| 80 | for (const auto& fmt : _mapFormats) |
| 81 | { |
| 82 | set.insert(fmt.second); |
| 83 | } |
| 84 | |
| 85 | return set; |
| 86 | } |
| 87 | |
| 88 | std::set<MapFormatPtr> MapFormatManager::getMapFormatList(const std::string& extension) |
| 89 | { |
no test coverage detected