Return whether the algorithm has sub-algorithms. * * @param hAlg Handle to an algorithm. Must NOT be null. * @since 3.11 */
| 7632 | * @since 3.11 |
| 7633 | */ |
| 7634 | bool GDALAlgorithmHasSubAlgorithms(GDALAlgorithmH hAlg) |
| 7635 | { |
| 7636 | VALIDATE_POINTER1(hAlg, __func__, false); |
| 7637 | return hAlg->ptr->HasSubAlgorithms(); |
| 7638 | } |
| 7639 | |
| 7640 | /************************************************************************/ |
| 7641 | /* GDALAlgorithmGetSubAlgorithmNames() */ |