Skip to content

Commit

Permalink
remove extra semicolons
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7347 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 7, 2007
1 parent 21f95a2 commit c297131
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions src/core/raster/qgsrasterlayer.h
Expand Up @@ -389,7 +389,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
QString getRedBandName()
{
return redBandNameQString;
};
}
/** \brief Mutator for red band name (allows alternate mappings e.g. map blue as red colour). */
void setRedBandName(QString const & theBandNameQString);
//
Expand All @@ -399,7 +399,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
QString getGreenBandName()
{
return greenBandNameQString;
};
}
/** \brief Mutator for green band name mapping. */
void setGreenBandName(QString const & theBandNameQString);
//
Expand All @@ -409,7 +409,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
QString getBlueBandName()
{
return blueBandNameQString;
};
}
/** \brief Mutator for blue band name mapping. */
void setBlueBandName(QString const & theBandNameQString);
//
Expand All @@ -419,7 +419,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
QString getTransparentBandName()
{
return transparentBandNameQString;
};
}
/** \brief Mutator for transparent band name mapping. */
void setTransparentBandName(QString const & theBandNameQString);
//
Expand All @@ -429,7 +429,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
QString getGrayBandName()
{
return grayBandNameQString;
};
}
/** \brief Mutator for gray band name mapping. */
void setGrayBandName(QString const & theBandNameQString);
//
Expand All @@ -439,12 +439,12 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
bool getShowDebugOverlayFlag()
{
return showDebugOverlayFlag;
};
}
/** \brief Mutator for a flag that determines whether to show some debug info on the image. */
void setShowDebugOverlayFlag(bool theFlag)
{
showDebugOverlayFlag=theFlag;
};
}
//
// Accessor and mutator for min and max red
//
Expand All @@ -456,7 +456,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMinRedDouble()
{
return minRedDouble;
};
}
/** \brief Mutator for minimum clipping range for red.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -466,7 +466,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
minRedDouble=theDouble;
};
}
/** \brief Accessor for maximum clipping range for red.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -475,7 +475,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMaxRedDouble()
{
return maxRedDouble;
};
}
/** \brief Mutator for maximum clipping range for red.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -485,7 +485,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
maxRedDouble=theDouble;
};
}
//
// Accessor and mutator for min and max green
//
Expand All @@ -497,7 +497,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMinGreenDouble()
{
return minGreenDouble;
};
}
/** \brief Mutator for minimum clipping range for green.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -507,7 +507,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
minGreenDouble=theDouble;
};
}
/** \brief Accessor for maximum clipping range for green.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -516,7 +516,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMaxGreenDouble()
{
return maxGreenDouble;
};
}
/** \brief Mutator for maximum clipping range for green.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -526,7 +526,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
maxGreenDouble=theDouble;
};
}
//
// Accessor and mutator for min and max blue
//
Expand All @@ -539,7 +539,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMinBlueDouble()
{
return minBlueDouble;
};
}
/** \brief Mutator for minimum clipping range for blue.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -549,7 +549,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
minBlueDouble=theDouble;
};
}
/** \brief Accessor for maximum clipping range for blue.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -558,7 +558,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMaxBlueDouble()
{
return maxBlueDouble;
};
}
/** \brief Mutator for maximum clipping range for blue.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -568,7 +568,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedColorMinMax = true;
maxBlueDouble=theDouble;
};
}
//
// Accessor and mutator for min and max gray
//
Expand All @@ -580,7 +580,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMinGrayDouble()
{
return minGrayDouble;
};
}
/** \brief Mutator for minimum clipping range for gray.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -590,7 +590,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedGrayMinMax = true;
minGrayDouble=theDouble;
};
}
/** \brief Accessor for maximum clipping range for gray.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -599,7 +599,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
double getMaxGrayDouble()
{
return maxGrayDouble;
};
}
/** \brief Mutator for maximum clipping range for gray.
*
* The clipping range can have different interpretations - it can either be used to perform
Expand All @@ -609,7 +609,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
{
userDefinedGrayMinMax = true;
maxGrayDouble=theDouble;
};
}
//
/** \brief This enumerator describes the types of histogram scaling algorithms that can be used. */
enum COLOR_SCALING_ALGORITHM
Expand All @@ -626,12 +626,12 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
COLOR_SCALING_ALGORITHM getColorScalingAlgorithm()
{
return colorScalingAlgorithm;
};
}
/** \brief Mutator for color scaling algorithm. */
void setColorScalingAlgorithm(COLOR_SCALING_ALGORITHM theAlgorithm)
{
colorScalingAlgorithm=theAlgorithm;
};
}

/** \brief This enumerator describes the types of histogram colour ramping that can be used. */
enum COLOR_RAMPING_TYPE
Expand All @@ -646,12 +646,12 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
COLOR_RAMPING_TYPE getColorRampingType()
{
return colorRampingType;
};
}
/** \brief Mutator for color scaling algorithm. */
void setColorRampingType(COLOR_RAMPING_TYPE theRamping)
{
colorRampingType=theRamping;
};
}

/** \brief This enumerator describes the different kinds of drawing we can do. */
enum DRAWING_STYLE
Expand All @@ -671,15 +671,15 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
// Accessor and mutator for drawing style.
//
/** \brief Accessor for drawing style. */
DRAWING_STYLE getDrawingStyle() {return drawingStyle;};
DRAWING_STYLE getDrawingStyle() {return drawingStyle;}
/** \brief Returns a string representation of drawing style.
*
* Implementaed mainly for serialisation / deserialisation of settings to xml.
* NOTE: May be deprecated in the future!. Use alternate implementation above rather.
* */
QString getDrawingStyleAsQString();
/** \brief Mutator for drawing style. */
void setDrawingStyle(DRAWING_STYLE const & theDrawingStyle) {drawingStyle=theDrawingStyle;};
void setDrawingStyle(DRAWING_STYLE const & theDrawingStyle) {drawingStyle=theDrawingStyle;}
/** \brief Overloaded version of the above function for convenience when restoring from xml.
*
* Implementaed mainly for serialisation / deserialisation of settings to xml.
Expand All @@ -701,9 +701,9 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
//accessor and for raster layer type (READ ONLY)
//
/** \brief Accessor for raster layer type (which is a read only property) */
RASTER_LAYER_TYPE getRasterLayerType() { return rasterLayerType; };
RASTER_LAYER_TYPE getRasterLayerType() { return rasterLayerType; }
/** \brief Accessor for hasPyramidsFlag (READ ONLY) */
bool getHasPyramidsFlag() {return hasPyramidsFlag;};
bool getHasPyramidsFlag() {return hasPyramidsFlag;}

/** \brief Get a legend image for this layer. */
QPixmap getLegendQPixmap();
Expand Down

0 comments on commit c297131

Please sign in to comment.