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

Writes the contents of the vector to stream s.

Definition at line 472 of file qptrvector.h.

00473 {
00474     FXuint mysize=i.count();
00475     s << mysize;
00476     for(QPtrVectorIterator<type> it(i); it.current(); ++it)
00477     {
00478         s << *it.current();
00479     }
00480     return s;
00481 }


(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