SFF++ library: reading and writing SFF from C++

◆ verbose() [5/8]

void sff::verbose ( std::ostream &  os,
const FREE free 
)

Definition at line 223 of file sffverbose.cc.

References sff::FREE::lines.

224  {
225  os << "contents of SFF FREE block:" << std::endl;
226  sff::FREE::Tlines::const_iterator I=free.lines.begin();
227  while (I != free.lines.end())
228  {
229  os << " " << *I << std::endl;;
230  ++I;
231  }
232  } // void verbose(std::ostream& os, const FREE& free)