mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-21 00:05:53 -04:00
Add missing doc
This commit is contained in:
parent
4ad077e391
commit
e20ed4bfdb
@ -441,8 +441,18 @@ class CORE_EXPORT QgsRasterDataProvider : public QgsDataProvider, public QgsRast
|
||||
static QString identifyFormatLabel( QgsRaster::IdentifyFormat format );
|
||||
static Capability identifyFormatToCapability( QgsRaster::IdentifyFormat format );
|
||||
|
||||
//! Step width and height for raster iterations
|
||||
/**
|
||||
* Step width for raster iterations.
|
||||
* @see stepHeight()
|
||||
* @note added in QGIS 3.0
|
||||
*/
|
||||
virtual int stepWidth() const { return 2000; }
|
||||
|
||||
/**
|
||||
* Step height for raster iterations.
|
||||
* @see stepWidth()
|
||||
* @note added in QGIS 3.0
|
||||
*/
|
||||
virtual int stepHeight() const { return 2000; }
|
||||
|
||||
signals:
|
||||
|
Loading…
x
Reference in New Issue
Block a user