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

Writes the contents of the list to stream s.

Definition at line 515 of file qptrlist.h.

00515 {
00516     FXuint mysize=i.count();
00517     s << mysize;
00518     for(QPtrListIterator<type, allocator> it(i); it.current(); ++it)
00519     {
00520         s << *it.current();
00521     }
00522     return s;
00523 }


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