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

Writes the contents of the dictionary to stream s.

Definition at line 190 of file qdict.h.

00191 {
00192     FXuint mysize=i.count();
00193     s << mysize;
00194     for(QDictIterator<type> it(i); it.current(); ++it)
00195     {
00196         s << it.currentKey();
00197         s << *it.current();
00198     }
00199     return s;
00200 }


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