#include <parameter.h>
Inherits GenericParameter.
Inheritance diagram for DoubleParameter:
Public Member Functions | |
DoubleParameter (string aName, string aComment, string aDefault, string aValues) | |
the constructor of any parameter allows to define the various parameter attributes. | |
double | get (string aClass, string aInstance) |
returns the parameter value. |
It stores double numbers.
example:
Param->addParameter ("fooClass", new DoubleParameter("foo", "foo desc.", "1.0", "(0,inf)" )); double fooVal = get<DoubleParameter,double>(Param, "foo", "fooClass", "");
|
the constructor of any parameter allows to define the various parameter attributes.
|
|
returns the parameter value.
|