Constructor by dataset name. */
| 167 | |
| 168 | /** Constructor by dataset name. */ |
| 169 | explicit GDALArgDatasetValue(const std::string &name) |
| 170 | : m_name(name), m_nameSet(true) |
| 171 | { |
| 172 | } |
| 173 | |
| 174 | /** Constructor by dataset instance, increasing its reference counter */ |
| 175 | explicit GDALArgDatasetValue(GDALDataset *poDS); |
no outgoing calls