Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: gdal "raster overview delete" subcommand 5 : * Author: Even Rouault <even dot rouault at spatialys.com> 6 : * 7 : ****************************************************************************** 8 : * Copyright (c) 2025, Even Rouault <even dot rouault at spatialys.com> 9 : * 10 : * SPDX-License-Identifier: MIT 11 : ****************************************************************************/ 12 : 13 : #ifndef GDALALG_RASTER_OVERVIEW_DELETE_INCLUDED 14 : #define GDALALG_RASTER_OVERVIEW_DELETE_INCLUDED 15 : 16 : #include "gdalalgorithm.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALRasterOverviewAlgorithmDelete */ 22 : /************************************************************************/ 23 : 24 : class GDALRasterOverviewAlgorithmDelete final : public GDALAlgorithm 25 : { 26 : public: 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"; 31 : 32 13 : static std::vector<std::string> GetAliases() 33 : { 34 13 : return {}; 35 : } 36 : 37 : GDALRasterOverviewAlgorithmDelete(); 38 : 39 : private: 40 : bool RunImpl(GDALProgressFunc, void *) override; 41 : 42 : GDALArgDatasetValue m_dataset{}; 43 : std::vector<std::string> m_openOptions{}; 44 : std::vector<std::string> m_inputFormats{}; 45 : bool m_readOnly = false; 46 : }; 47 : 48 : //! @endcond 49 : 50 : #endif