template<typename keytype, class type>
Returns the key associated with what this iterator points to.
Definition at line 366 of file qdictbase.h. 00367 { 00368 if(mydict) 00369 { 00370 typename QDictBase<keytype, type>::keyitem &ki=*itkil; 00371 return ki.first; 00372 } 00373 // Hopefully this will cause an exception 00374 return *((const keytype *) 0); 00375 }
|