OpenM++ runtime library (libopenm)
|
public interface to get model run options More...
Public Member Functions | |
virtual bool | isOptionExist (const char *i_key) const noexcept=0 |
return true if run option found by i_key in run_option table for the current run id. | |
virtual std::string | strOption (const char *i_key, const std::string &i_default="") const noexcept=0 |
return string value of run option by i_key or default value if not found. | |
virtual bool | boolOption (const char *i_key) const noexcept=0 |
return boolean value of run option by i_key or false if not found or value is not "yes", "1", "true" or empty "" string. | |
virtual int | boolOptionToInt (const char *i_key) const noexcept=0 |
search for boolean value of run option by i_key and return one of: return 1 if key found and value is one of: "yes", "1", "true" or empty value, return 0 if key found and value is one of: "no", "0", "false", return -1 if key not found, return -2 otherwise. | |
virtual int | intOption (const char *i_key, int i_default) const noexcept=0 |
return int value of run option by i_key or default if not found or can not be converted to int. | |
virtual long long | longOption (const char *i_key, long long i_default) const noexcept=0 |
return long value of run option by i_key or default if not found or can not be converted to long. | |
virtual double | doubleOption (const char *i_key, double i_default) const noexcept=0 |
return double value of run option by i_key or default if not found or can not be converted to double. | |
virtual std::vector< std::pair< std::string, std::string > > | allOptions (void) const noexcept=0 |
return a copy of all run options as [key, value] pairs, ordered by key. | |
public interface to get model run options