template<class type>
void FX::QDict< type >::insert ( const FXString k,
const type *  d 
) [inline]

Inserts item d into the dictionary under key k.

Definition at line 100 of file qdict.h.

References FX::QDictBase< keytype, type >::insert(), and FX::FXString::lower().

Referenced by FX::operator>>().

00101     {
00102         if(checkcase)
00103             Base::insert(hash(k), k, const_cast<type *>(d));
00104         else
00105         {
00106             FXString key(k);
00107             key.lower();
00108             Base::insert(hash(key), key, const_cast<type *>(d));
00109         }
00110     }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:36 2009 for TnFOX by doxygen v1.4.7