TSIO++ Time series input/output

◆ operator<<() [5/6]

template<class C >
datrw::odatstream& ts::sff::operator<< ( datrw::odatstream &  os,
const TraceVector< C > &  tv 
)

Definition at line 111 of file outputoperators.h.

113  {
114  typedef TraceVector<C> Ttracevector;
115  for(typename Ttracevector::const_iterator i=tv.begin();
116  i != tv.end(); ++i)
117  { os << *i; }
118  return os;
119  }