Added doxygen docs

This commit is contained in:
carolinux 2015-06-24 01:14:25 +02:00
parent 5f2c8e08e2
commit 37cd9e7a0d
2 changed files with 10 additions and 0 deletions

View File

@ -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;

View File

@ -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; }