#include <gdal_priv.h>
Public Member Functions | |
int | GetMOFlags () |
void | SetMOFlags (int nFlags) |
virtual const char * | GetDescription () const |
Fetch object description. | |
virtual void | SetDescription (const char *) |
Set object description. | |
virtual char ** | GetMetadata (const char *pszDomain="") |
Fetch metadata. | |
virtual CPLErr | SetMetadata (char **papszMetadata, const char *pszDomain="") |
Set metadata. | |
virtual const char * | GetMetadataItem (const char *pszName, const char *pszDomain="") |
Fetch single metadata item. | |
virtual CPLErr | SetMetadataItem (const char *pszName, const char *pszValue, const char *pszDomain="") |
Set single metadata item. | |
Protected Attributes | |
int | nFlags |
CPLString | sDescription |
GDALMultiDomainMetadata | oMDMD |
const char * GDALMajorObject::GetDescription | ( | ) | const [virtual] |
Fetch object description.
The semantics of the returned description are specific to the derived type. For GDALDatasets it is the dataset name. For GDALRasterBands it is actually a description (if supported) or "".
This method is the same as the C function GDALGetDescription().
Referenced by GDALDriver::Create(), GDALDriver::CreateCopy(), GDALOpen(), GDALOpenShared(), GDALDriverManager::GetDriverByName(), GDALDataset::GetFileList(), GDALRasterBand::GetLockedBlockRef(), GDALPamDataset::GetMetadataItem(), GDALDataset::MarkAsShared(), GDALDriverManager::RegisterDriver(), GDALDataset::~GDALDataset(), and GDALRasterBand::~GDALRasterBand().
char ** GDALMajorObject::GetMetadata | ( | const char * | pszDomain = "" |
) | [virtual] |
Fetch metadata.
The returned string list is owned by the object, and may change at any time. It is formated as a "Name=value" list with the last pointer value being NULL. Use the the CPL StringList functions such as CSLFetchNameValue() to manipulate it.
Note that relatively few formats return any metadata at this time.
This method does the same thing as the C function GDALGetMetadata().
pszDomain | the domain of interest. Use "" or NULL for the default domain. |
Reimplemented in GDALPamDataset.
const char * GDALMajorObject::GetMetadataItem | ( | const char * | pszName, | |
const char * | pszDomain = "" | |||
) | [virtual] |
Fetch single metadata item.
The C function GDALGetMetadataItem() does the same thing as this method.
pszName | the key for the metadata item to fetch. | |
pszDomain | the domain to fetch for, use NULL for the default domain. |
Reimplemented in GDALPamDataset.
Referenced by GDALRasterBand::ComputeStatistics(), GDALRasterBand::GetDefaultHistogram(), GDALRasterBand::GetHistogram(), GDALRasterBand::GetMaskBand(), GDALRasterBand::GetMaximum(), GDALRasterBand::GetMinimum(), and GDALRasterBand::GetStatistics().
void GDALMajorObject::SetDescription | ( | const char * | pszNewDesc | ) | [virtual] |
Set object description.
The semantics of the description are specific to the derived type. For GDALDatasets it is the dataset name. For GDALRasterBands it is actually a description (if supported) or "".
Normally application code should not set the "description" for GDALDatasets. It is handled internally.
This method is the same as the C function GDALSetDescription().
Referenced by GDALDriver::Create(), GDALDriver::CreateCopy(), and GDALOpen().
CPLErr GDALMajorObject::SetMetadata | ( | char ** | papszMetadataIn, | |
const char * | pszDomain = "" | |||
) | [virtual] |
Set metadata.
The C function GDALSetMetadata() does the same thing as this method.
papszMetadata | the metadata in name=value string list format to apply. | |
pszDomain | the domain of interest. Use "" or NULL for the default domain. |
Reimplemented in GDALPamDataset.
CPLErr GDALMajorObject::SetMetadataItem | ( | const char * | pszName, | |
const char * | pszValue, | |||
const char * | pszDomain = "" | |||
) | [virtual] |
Set single metadata item.
The C function GDALSetMetadataItem() does the same thing as this method.
pszName | the key for the metadata item to fetch. | |
pszValue | the value to assign to the key. | |
pszDomain | the domain to set within, use NULL for the default domain. |
Reimplemented in GDALPamDataset.
Referenced by GDALDriverManager::RegisterDriver(), and GDALRasterBand::SetStatistics().