File: gdalalg_dataset.cpp

package info (click to toggle)
gdal 3.12.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 92,396 kB
  • sloc: cpp: 1,224,305; ansic: 206,456; python: 26,284; java: 6,001; xml: 4,769; sh: 3,869; cs: 2,513; yacc: 1,306; makefile: 214
file content (37 lines) | stat: -rw-r--r-- 1,295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/******************************************************************************
 *
 * Project:  GDAL
 * Purpose:  gdal "dataset" subcommand
 * Author:   Even Rouault <even dot rouault at spatialys.com>
 *
 ******************************************************************************
 * Copyright (c) 2025, Even Rouault <even dot rouault at spatialys.com>
 *
 * SPDX-License-Identifier: MIT
 ****************************************************************************/

//! @cond Doxygen_Suppress

#include "gdalalg_dataset.h"

#include "gdalalg_dataset_identify.h"
#include "gdalalg_dataset_copy.h"
#include "gdalalg_dataset_rename.h"
#include "gdalalg_dataset_delete.h"

/************************************************************************/
/*                         GDALDatasetAlgorithm                         */
/************************************************************************/

GDALDatasetAlgorithm::GDALDatasetAlgorithm()
    : GDALAlgorithm(NAME, DESCRIPTION, HELP_URL)
{
    RegisterSubAlgorithm<GDALDatasetIdentifyAlgorithm>();
    RegisterSubAlgorithm<GDALDatasetCopyAlgorithm>();
    RegisterSubAlgorithm<GDALDatasetRenameAlgorithm>();
    RegisterSubAlgorithm<GDALDatasetDeleteAlgorithm>();
}

GDALDatasetAlgorithm::~GDALDatasetAlgorithm() = default;

//! @endcond