/src/gdal/apps/gdalalg_dataset.cpp
Line | Count | Source |
1 | | /****************************************************************************** |
2 | | * |
3 | | * Project: GDAL |
4 | | * Purpose: gdal "dataset" 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 | | //! @cond Doxygen_Suppress |
14 | | |
15 | | #include "gdalalg_dataset.h" |
16 | | |
17 | | #include "gdalalg_dataset_identify.h" |
18 | | #include "gdalalg_dataset_check.h" |
19 | | #include "gdalalg_dataset_copy.h" |
20 | | #include "gdalalg_dataset_rename.h" |
21 | | #include "gdalalg_dataset_delete.h" |
22 | | |
23 | | /************************************************************************/ |
24 | | /* GDALDatasetAlgorithm */ |
25 | | /************************************************************************/ |
26 | | |
27 | | GDALDatasetAlgorithm::GDALDatasetAlgorithm() |
28 | 0 | : GDALAlgorithm(NAME, DESCRIPTION, HELP_URL) |
29 | 0 | { |
30 | 0 | RegisterSubAlgorithm<GDALDatasetIdentifyAlgorithm>(); |
31 | 0 | RegisterSubAlgorithm<GDALDatasetCheckAlgorithm>(); |
32 | 0 | RegisterSubAlgorithm<GDALDatasetCopyAlgorithm>(); |
33 | 0 | RegisterSubAlgorithm<GDALDatasetRenameAlgorithm>(); |
34 | 0 | RegisterSubAlgorithm<GDALDatasetDeleteAlgorithm>(); |
35 | 0 | } |
36 | | |
37 | 0 | GDALDatasetAlgorithm::~GDALDatasetAlgorithm() = default; |
38 | | |
39 | | //! @endcond |