Skip to content
Snippets Groups Projects
Commit 601eb639 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH: add missing method

parent 2a93300f
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,12 @@ public:
std::vector<std::string> GetParametersKeys(bool recursive = true);
// Always has value
bool HasValue() const
{
return true;
}
protected:
ParameterGroup();
virtual ~ParameterGroup();
......
......@@ -44,6 +44,11 @@ public:
/** RTTI support */
itkTypeMacro(RadiusParameter, Parameter);
bool HasValue() const
{
return true;
}
protected:
/** Constructor */
RadiusParameter()
......
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