Skip to content

Commit

Permalink
Add missing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 21, 2017
1 parent 4ad077e commit e20ed4b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/core/raster/qgsrasterdataprovider.h
Expand Up @@ -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:
Expand Down

0 comments on commit e20ed4b

Please sign in to comment.