Get the names of registered algorithms. * * @param hAlg Handle to an algorithm. Must NOT be null. * @return a NULL terminated list of names, which must be destroyed with * CSLDestroy() * @since 3.11 */
| 7649 | * @since 3.11 |
| 7650 | */ |
| 7651 | char **GDALAlgorithmGetSubAlgorithmNames(GDALAlgorithmH hAlg) |
| 7652 | { |
| 7653 | VALIDATE_POINTER1(hAlg, __func__, nullptr); |
| 7654 | return CPLStringList(hAlg->ptr->GetSubAlgorithmNames()).StealList(); |
| 7655 | } |
| 7656 | |
| 7657 | /************************************************************************/ |
| 7658 | /* GDALAlgorithmInstantiateSubAlgorithm() */ |