1 #ifndef COSMO_CONFIGPARSER_H 2 #define COSMO_CONFIGPARSER_H 15 void parse(std::string fname);
16 std::string getFileName();
19 std::string
operator()(std::string param, std::string default_val);
22 std::map<std::string, std::string> config;
std::string operator[](std::string param)
Get value of required parameter.
Definition: ConfigParser.cc:55
Definition: ConfigParser.h:10
std::string operator()(std::string param, std::string default_val)
Get value of parameter; use default if not set.
Definition: ConfigParser.cc:74