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

Writes the contents of the list to stream s.

Definition at line 301 of file qsortedlist.h.

00302 {
00303     FXuint mysize=i.count();
00304     s << mysize;
00305     for(QSortedListIterator<type, allocator> it(i); it.current(); ++it)
00306     {
00307         s << *it.current();
00308     }
00309     return s;
00310 }


(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