Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsclassificationquantile.h 3 : : --------------------- 4 : : begin : September 2019 5 : : copyright : (C) 2019 by Denis Rouzaud 6 : : email : denis@opengis.ch 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #ifndef QGSCLASSIFICATIONQUANTILE_H 17 : : #define QGSCLASSIFICATIONQUANTILE_H 18 : : 19 : : #include "qgis_core.h" 20 : : #include "qgsclassificationmethod.h" 21 : : 22 : : 23 : : /** 24 : : * \ingroup core 25 : : * \brief QgsClassificationQuantile is an implementation of QgsClassificationMethod 26 : : * based on quantiles 27 : : * \since QGIS 3.10 28 : : */ 29 : 10 : class CORE_EXPORT QgsClassificationQuantile : public QgsClassificationMethod 30 : : { 31 : : public: 32 : : QgsClassificationQuantile(); 33 : : 34 : : QString name() const override; 35 : : QString id() const override; 36 : : QgsClassificationMethod *clone() const override; 37 : : QIcon icon() const override; 38 : : 39 : : private: 40 : : QList<double> calculateBreaks( double &minimum, double &maximum, 41 : : const QList<double> &values, int nclasses ) override; 42 : : }; 43 : : 44 : : #endif // QGSCLASSIFICATIONQUANTILE_H