Skip to content
Snippets Groups Projects

Bug fixes

Merged Jakub Klinkovský requested to merge JK/bugfixes into develop
Files
12
@@ -82,7 +82,7 @@ public:
}
/**
* \brief Checks whether the parameter \e name already exists in ParameterContainer.
* \brief Checks if the ParameterContainer contains a parameter specified by its name.
*
* \param name Name of the parameter.
*/
@@ -95,6 +95,19 @@ public:
return false;
}
/**
* \brief Checks whether the ParameterContainer contains all specified parameter names.
*
* \param name Name of the parameter.
*/
bool checkParameters( std::initializer_list< String > names ) const
{
for( auto name : names )
if( ! checkParameter( name ) )
return false;
return true;
}
/**
* \brief Assigns new \e value to the parameter \e name.
*
Loading