FACT++  1.0
void Converter::Print ( std::ostream &  out) const

Definition at line 1076 of file Converter.cc.

References fList, and i.

1077 {
1078  for (FormatList::const_iterator i=fList.begin(); i!=fList.end(); i++)
1079  {
1080  out << "Type=" << i->first.first->name() << "[" << i->first.second << "] ";
1081  out << "N=" << i->second.first << " ";
1082  out << "offset=" << i->second.second << endl;
1083  }
1084 }
int i
Definition: db_dim_client.c:21
const FormatList fList
Original format string.
Definition: Converter.h:33