Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsclassificationcustom.cpp 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 : : #include "qgsclassificationcustom.h" 17 : : 18 : 10 : const QString QgsClassificationCustom::METHOD_ID = QStringLiteral( "Custom" ); 19 : : 20 : : 21 : 0 : QgsClassificationCustom::QgsClassificationCustom() 22 : 0 : : QgsClassificationMethod( NoFlag, 23 : : 0 /*codeComplexity*/ ) 24 : 0 : { 25 : 0 : } 26 : : 27 : : 28 : 0 : QgsClassificationMethod *QgsClassificationCustom::clone() const 29 : : { 30 : 0 : QgsClassificationCustom *c = new QgsClassificationCustom(); 31 : 0 : copyBase( c ); 32 : 0 : return c; 33 : 0 : } 34 : : 35 : 0 : QString QgsClassificationCustom::name() const 36 : : { 37 : 0 : return QObject::tr( "Custom" ); 38 : : } 39 : : 40 : 0 : QString QgsClassificationCustom::id() const 41 : : { 42 : 0 : return METHOD_ID; 43 : : } 44 : : 45 : 0 : QList<double> QgsClassificationCustom::calculateBreaks( double &minimum, double &maximum, 46 : : const QList<double> &values, int nclasses ) 47 : : { 48 : 0 : Q_UNUSED( minimum ) 49 : 0 : Q_UNUSED( maximum ) 50 : 0 : Q_UNUSED( values ) 51 : : Q_UNUSED( nclasses ) 52 : 0 : return QList<double>(); 53 : : }