Return an argument from its long name, short name or an alias */
| 2518 | |
| 2519 | /** Return an argument from its long name, short name or an alias */ |
| 2520 | GDALAlgorithmArg *GetArg(const std::string &osName, |
| 2521 | bool suggestionAllowed = false) |
| 2522 | { |
| 2523 | return GetArg(osName, suggestionAllowed, /* isConst = */ false); |
| 2524 | } |
| 2525 | |
| 2526 | /** Return an argument from its long name, short name or an alias */ |
| 2527 | GDALAlgorithmArg &operator[](const std::string &osName) |
no test coverage detected