template<class type>
Inserts item d into the dictionary under key k.
Definition at line 51 of file qptrdict.h. References FX::QDictBase< keytype, type >::insert(). Referenced by FX::operator>>(). 00052 { 00053 FXuval k_=conv(k); 00054 Base::insert((FXuint) k_, k_, const_cast<type *>(d)); 00055 }
|