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

Writes the contents of the dictionary to stream s.

Definition at line 104 of file qint64dict.h.

00105 {
00106     FXuint mysize=i.count();
00107     s << mysize;
00108     for(QInt64DictIterator<type> it(i); it.current(); ++it)
00109     {
00110         s << it.currentKey();
00111         s << *it.current();
00112     }
00113     return s;
00114 }


(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