| 7691 | */ |
| 7692 | |
| 7693 | bool GDALAlgorithmParseCommandLineArguments(GDALAlgorithmH hAlg, |
| 7694 | CSLConstList papszArgs) |
| 7695 | { |
| 7696 | VALIDATE_POINTER1(hAlg, __func__, false); |
| 7697 | return hAlg->ptr->ParseCommandLineArguments(CPLStringList(papszArgs)); |
| 7698 | } |
| 7699 | |
| 7700 | /************************************************************************/ |
| 7701 | /* GDALAlgorithmGetActualAlgorithm() */ |