mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
26 lines
507 B
Plaintext
26 lines
507 B
Plaintext
typedef QList<QgsRasterRange> QgsRasterRangeList;
|
|
|
|
class QgsRasterRange
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsrasterrange.h>
|
|
%End
|
|
|
|
public:
|
|
QgsRasterRange();
|
|
|
|
QgsRasterRange( double theMin, double theMax );
|
|
|
|
~QgsRasterRange();
|
|
|
|
double min() const;
|
|
double max() const;
|
|
|
|
double setMin( double theMin );
|
|
double setMax( double theMax );
|
|
|
|
bool operator==( const QgsRasterRange &o ) const;
|
|
|
|
bool contains( double value, const QgsRasterRangeList &rangeList );
|
|
};
|