template<class type>
FXStream& FX::operator<< ( FXStream &  s,
const QValueList< type > &  i 
)

Writes the contents of the list to stream s.

Definition at line 168 of file qvaluelist.h.

00169 {
00170     FXuint mysize=(FXuint) i.count();
00171     s << mysize;
00172     for(typename QValueList<type>::const_iterator it=i.begin(); it!=i.end(); ++it)
00173     {
00174         s << *it;
00175     }
00176     return s;
00177 }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:32:29 2009 for TnFOX by doxygen v1.4.7