mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
API doc fix
This commit is contained in:
parent
eaecf0cd2c
commit
0cd6177230
@ -525,8 +525,11 @@ class CORE_EXPORT QgsRasterDataProvider : public QgsDataProvider, public QgsRast
|
||||
return false;
|
||||
}
|
||||
|
||||
/** Set no data value on created dataset */
|
||||
virtual bool setNoDataValue( int, double ) { return false; }
|
||||
/** Set no data value on created dataset
|
||||
* @param bandNo band number
|
||||
* @param noDataValue no data value
|
||||
*/
|
||||
virtual bool setNoDataValue( int bandNo, double noDataValue ) { Q_UNUSED( bandNo ); Q_UNUSED( noDataValue ); return false; }
|
||||
|
||||
/**Returns the formats supported by create()*/
|
||||
virtual QStringList createFormats() const { return QStringList(); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user