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

Writes the contents of the dictionary to stream s.

Definition at line 110 of file qptrdict.h.

00111 {
00112     FXuint mysize=i.count();
00113     s << mysize;
00114     for(QPtrDictIterator<type> it(i); it.current(); ++it)
00115     {
00116         s << (FXulong) it.currentKey();
00117         s << *it.current();
00118     }
00119     return s;
00120 }


(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