Skip to content

Commit e20ed4b

Browse files
committed
Add missing doc
1 parent 4ad077e commit e20ed4b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/core/raster/qgsrasterdataprovider.h

+11-1
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,18 @@ class CORE_EXPORT QgsRasterDataProvider : public QgsDataProvider, public QgsRast
441441
static QString identifyFormatLabel( QgsRaster::IdentifyFormat format );
442442
static Capability identifyFormatToCapability( QgsRaster::IdentifyFormat format );
443443

444-
//! Step width and height for raster iterations
444+
/**
445+
* Step width for raster iterations.
446+
* @see stepHeight()
447+
* @note added in QGIS 3.0
448+
*/
445449
virtual int stepWidth() const { return 2000; }
450+
451+
/**
452+
* Step height for raster iterations.
453+
* @see stepWidth()
454+
* @note added in QGIS 3.0
455+
*/
446456
virtual int stepHeight() const { return 2000; }
447457

448458
signals:

0 commit comments

Comments
 (0)