This commit is contained in:
Blottiere Paul 2018-07-20 09:52:24 +01:00
parent 8219c180ad
commit e48de2048a
3 changed files with 3 additions and 14 deletions

View File

@ -128,9 +128,6 @@ Converts the parameter into a double.
%Docstring
Converts the parameter into a boolean.
:param ok: True if there's no error during the conversion, false otherwise
:param delimiter: The character used for delimiting
:return: A boolean
%End
@ -139,7 +136,6 @@ Converts the parameter into a boolean.
Converts the parameter into a color.
:param ok: True if there's no error during the conversion, false otherwise
:param delimiter: The character used for delimiting
:return: A color
%End

View File

@ -126,8 +126,6 @@ class SERVER_EXPORT QgsServerParameterDefinition
/**
* Converts the parameter into a boolean.
* \param ok True if there's no error during the conversion, false otherwise
* \param delimiter The character used for delimiting
* \returns A boolean
*/
bool toBool() const;
@ -135,7 +133,6 @@ class SERVER_EXPORT QgsServerParameterDefinition
/**
* Converts the parameter into a color.
* \param ok True if there's no error during the conversion, false otherwise
* \param delimiter The character used for delimiting
* \returns A color
*/
QColor toColor( bool &ok ) const;

View File

@ -152,21 +152,17 @@ namespace QgsWfs
* Constructor for WFS parameters with specific values.
* \param parameters Map of parameters where keys are parameters' names.
*/
// QgsWfsParameters( const QgsServerRequest::Parameters &parameters );
QgsWfsParameters( const QgsServerParameters &parameters );
/**
* Constructor for WFS parameters with default values only.
*/
*/
QgsWfsParameters();
virtual ~QgsWfsParameters() = default;
/**
* Loads new parameters.
* \param parameters Map of parameters
* Default destructor for QgsWfsParameters.
*/
// void load( const QgsServerRequest::Parameters &parameters );
virtual ~QgsWfsParameters() = default;
/**
* Dumps parameters.