QGIS/python/core/raster/qgsrasterrange.sip.in

60 lines
1.6 KiB
Plaintext
Raw Normal View History

2017-06-02 23:35:10 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgsrasterrange.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
typedef QList<QgsRasterRange> QgsRasterRangeList;
class QgsRasterRange
{
2017-06-02 23:35:10 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Raster values range container. Represents range of values between min and max
including min and max value.
%End
2017-06-02 23:35:10 +02:00
%TypeHeaderCode
#include "qgsrasterrange.h"
%End
public:
2017-06-02 23:35:10 +02:00
QgsRasterRange();
2017-06-02 23:35:10 +02:00
%Docstring
Constructor.
%End
QgsRasterRange( double min, double max );
2017-06-02 23:35:10 +02:00
%Docstring
Constructor
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param min: minimum value
:param max: max value
2017-06-02 23:35:10 +02:00
%End
double min() const;
double max() const;
double setMin( double min );
double setMax( double max );
bool operator==( QgsRasterRange o ) const;
2017-06-02 23:35:10 +02:00
};
2017-06-02 23:35:10 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgsrasterrange.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/