13#ifndef GDALALG_RASTER_OVERVIEW_DELETE_INCLUDED
14#define GDALALG_RASTER_OVERVIEW_DELETE_INCLUDED
16#include "gdalalgorithm.h"
24class GDALRasterOverviewAlgorithmDelete final :
public GDALAlgorithm
27 static constexpr const char *NAME =
"delete";
28 static constexpr const char *DESCRIPTION =
"Deleting overviews.";
29 static constexpr const char *HELP_URL =
30 "/programs/gdal_raster_overview_delete.html";
32 GDALRasterOverviewAlgorithmDelete();
35 bool RunImpl(GDALProgressFunc,
void *)
override;
37 GDALArgDatasetValue m_dataset{};
38 std::vector<std::string> m_openOptions{};
39 std::vector<std::string> m_inputFormats{};
40 bool m_readOnly =
false;
GDAL algorithm.
Definition gdalalgorithm_cpp.h:2261