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

ENH: add StringListParameter to GetParameterType() in WrapperApplication

parent 29a68140
No related branches found
No related tags found
No related merge requests found
...@@ -386,6 +386,10 @@ ParameterType Application::GetParameterType(std::string paramKey) const ...@@ -386,6 +386,10 @@ ParameterType Application::GetParameterType(std::string paramKey) const
{ {
type = ParameterType_String; type = ParameterType_String;
} }
else if (dynamic_cast<const StringListParameter*>(param))
{
type = ParameterType_StringList;
}
else if (dynamic_cast<const RAMParameter*>(param)) else if (dynamic_cast<const RAMParameter*>(param))
{ {
type = ParameterType_RAM; type = ParameterType_RAM;
......
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