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

Writes the contents of the dictionary to stream s.

Definition at line 223 of file QHostAddress.h.

00224 {
00225     FXuint mysize=i.count();
00226     s << mysize;
00227     for(QHostAddressDictIterator<type> it(i); it.current(); ++it)
00228     {
00229         s << it.currentKey();
00230         s << *it.current();
00231     }
00232     return s;
00233 }


(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