Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added doxygen docs
  • Loading branch information
carolinux committed Jun 23, 2015
1 parent 5f2c8e0 commit 37cd9e7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/core/raster/qgssinglebandpseudocolorrenderer.sip
Expand Up @@ -28,6 +28,11 @@ class QgsSingleBandPseudoColorRenderer: QgsRasterRenderer
* @note added in QGIS 2.7
*/
int band() const;

/** Sets the band used by the renderer.
* @see band
* @note added in QGIS 2.10
*/
void setBand(int bandNo);

double classificationMin() const;
Expand Down
5 changes: 5 additions & 0 deletions src/core/raster/qgssinglebandpseudocolorrenderer.h
Expand Up @@ -53,6 +53,11 @@ class CORE_EXPORT QgsSingleBandPseudoColorRenderer: public QgsRasterRenderer
* @note added in QGIS 2.7
*/
int band() const { return mBand; }

/** Sets the band used by the renderer.
* @see band
* @note added in QGIS 2.10
*/
void setBand( int bandNo );

double classificationMin() const { return mClassificationMin; }
Expand Down

0 comments on commit 37cd9e7

Please sign in to comment.