FACT++  1.0
void Configuration::PrintUnknown ( const std::vector< std::string > &  vec,
int  steps = 1 
) const
private

Print a list of all unkown options within the given vector.

Definition at line 737 of file Configuration.cc.

738 {
739  for (vector<string>::const_iterator v=vec.begin(); v<vec.end(); v+=steps)
740  cout << " " << *v << endl;
741  cout << endl;
742 }