31 return _intParams.insert(std::make_pair(name, value)).second;
35 return _boolParams.insert(std::make_pair(name, value)).second;
39 return _realParams.insert(std::make_pair(name, value)).second;
42 return _stringParams.insert(std::make_pair(name, value)).second;
bool ExportBoolParameter(std::string name, bool value)
Sets the value of a boolean parameter.
const std::map< std::string, int > & GetIntParameters()
Getter method for integer geometry parameters.
const std::map< std::string, double > & GetRealParameters()
Getter method for real geometry parameters.
bool ExportRealParameter(std::string name, double value)
Sets the value of a real parameter.
const std::map< std::string, std::string > & GetStringParameters()
Getter method for string geometry parameters.
const std::map< std::string, bool > & GetBoolParameters()
Getter method for boolean geometry parameters.
bool ExportStringParameter(std::string name, std::string value)
Sets the value of a string parameter.
bool ExportIntParameter(std::string name, int value)
Sets the value of an integer parameter.