FACT++  1.0
template<class T >
const std::map<std::string,T> Configuration::GetOptions ( const std::string &  opt)
inline

Definition at line 125 of file Configuration.h.

References DoParse(), GetOptions(), GetWildcardOptions(), and Parse().

Referenced by StateMachineDimControl::EvalOptions(), and Main::execute().

126  {
127  const std::vector<std::string> rc = GetWildcardOptions(opt+'*');
128 
129  std::map<std::string,T> map;
130  for (auto it=rc.begin(); it!=rc.end(); it++)
131  map[it->substr(opt.length())] = Get<T>(*it);
132 
133  return map;
134  }
const std::map< std::string, std::string > & GetWildcardOptions() const

+ Here is the call graph for this function:

+ Here is the caller graph for this function: