|
void | addParameter (const std::string &, const std::string &) |
| adds a new value parameter. More...
|
|
const std::string & | getValue (const std::string &) |
| returns the value of the parameter named name . More...
|
|
const std::map< std::string, std::string > & | getValues () |
| returns the map of value parameters.
|
|
bool | isEmpty () |
| returns true if Parameters has no value parameter nor equation parameter.
|
|
| Parameters () |
| creates a new set of parameters.
|
|
This class describes a set of Parameters. Parameters consist in two maps associating a parameter name to a double value or a std::string (equation).
◆ addParameter()
void addParameter |
( |
const std::string & |
name, |
|
|
const std::string & |
value |
|
) |
| |
adds a new value parameter.
adds a new equation parameter.
- Parameters
-
name | the name of the parameter. |
value | the value of the parameter. |
name | the name of the parameter. |
equation | the equation of the parameter. |
◆ getValue()
const string & getValue |
( |
const std::string & |
name | ) |
|
returns the value of the parameter named name
.
- Parameters
-
name | the name of the parameter. |
- Returns
- the parameter double value.