Skip to content
Snippets Groups Projects
Commit 8f31a967 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

BUG: also need to resolve parameters in GetParameterByIndex()

parent 0991b976
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ public:
* or the path to a choice value */
void AddParameter(ParameterType type, std::string paramKey, std::string paramName);
Parameter::Pointer GetParameterByIndex(unsigned int i);
Parameter::Pointer GetParameterByIndex(unsigned int i, bool follow=true);
Parameter::Pointer GetParameterByKey(std::string name, bool follow=true);
......
......@@ -732,9 +732,14 @@ ParameterGroup::SetParameter(Parameter::Pointer p, std::string &key)
}
Parameter::Pointer
ParameterGroup::GetParameterByIndex(unsigned int i)
ParameterGroup::GetParameterByIndex(unsigned int i, bool follow)
{
return m_ParameterList[i];
Parameter *param = m_ParameterList[i];
if (follow)
{
param = this->ResolveParameter(param);
}
return Parameter::Pointer(param);
}
Parameter::Pointer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment