FACT++  1.0
void Configuration::PrintWildcardOptions ( ) const

Print a list of all options which were registered using wildcards and have not be registered subsequently by access.

Definition at line 1320 of file Configuration.cc.

References fWildcardOptions.

Referenced by AddEnv(), and Parse().

1321 {
1322  cout << "Options registered with wildcards and not yet accessed:" << endl;
1323 
1324  size_t max = 0;
1325  for (auto it=fWildcardOptions.begin(); it!=fWildcardOptions.end(); it++)
1326  if (it->second.length()>max)
1327  max = it->second.length();
1328 
1329  cout.setf(ios_base::left);
1330  for (auto it=fWildcardOptions.begin(); it!=fWildcardOptions.end(); it++)
1331  cout << setw(max+1) << it->second << " : " << it->first <<endl;
1332 }
std::map< std::string, std::string > fWildcardOptions
Storage container for unrecognized options retrieved from the database.
Definition: Configuration.h:35

+ Here is the caller graph for this function: