| 120 | /************************************************************************/ |
| 121 | |
| 122 | std::vector<std::string> GDALAlgorithmRegistry::GetNames() const |
| 123 | { |
| 124 | std::vector<std::string> res; |
| 125 | for (const auto &iter : m_mapNameToInfo) |
| 126 | { |
| 127 | res.push_back(iter.first); |
| 128 | } |
| 129 | return res; |
| 130 | } |
| 131 | |
| 132 | /************************************************************************/ |
| 133 | /* GDALAlgorithmRegistry::Instantiate() */ |
no test coverage detected