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

Writes the contents of the dictionary to stream s.

Definition at line 101 of file qintdict.h.

00102 {
00103     FXuint mysize=i.count();
00104     s << mysize;
00105     for(QIntDictIterator<type> it(i); it.current(); ++it)
00106     {
00107         s << (FXlong) it.currentKey();
00108         s << *it.current();
00109     }
00110     return s;
00111 }


(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