Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprocessingmodelparameter.cpp 3 : : ------------------------------ 4 : : begin : June 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsprocessingmodelparameter.h" 19 : : 20 : : ///@cond NOT_STABLE 21 : : 22 : 0 : QgsProcessingModelParameter::QgsProcessingModelParameter( const QString ¶meterName ) 23 : 0 : : mParameterName( parameterName ) 24 : 0 : { 25 : : 26 : 0 : } 27 : : 28 : 0 : QgsProcessingModelParameter *QgsProcessingModelParameter::clone() const 29 : : { 30 : 0 : return new QgsProcessingModelParameter( *this ); 31 : : } 32 : : 33 : 0 : QVariant QgsProcessingModelParameter::toVariant() const 34 : : { 35 : 0 : QVariantMap map; 36 : 0 : map.insert( QStringLiteral( "name" ), mParameterName ); 37 : 0 : saveCommonProperties( map ); 38 : 0 : return map; 39 : 0 : } 40 : : 41 : 0 : bool QgsProcessingModelParameter::loadVariant( const QVariantMap &map ) 42 : : { 43 : 0 : mParameterName = map.value( QStringLiteral( "name" ) ).toString(); 44 : 0 : restoreCommonProperties( map ); 45 : 0 : return true; 46 : 0 : } 47 : : 48 : : ///@endcond