template<class IdxT, class ElemT, class DelT>
Definition at line 56 of file SimpleMap.h. 00057 { 00058 for (ConstIter it=mMap.begin() ; it!=mMap.end() ; it++) 00059 { 00060 if (it->second == elem) 00061 { 00062 idx = it->first; 00063 return true; 00064 } 00065 } 00066 return false; 00067 }
|