Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class IdxT, class ElemT, class DelT>
bool Impala::Util::SimpleMapBase< IdxT, ElemT, DelT >::GetIdx ( ElemT  elem,
IdxT &  idx 
) const [inline]

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     }


Generated on Thu Jan 13 09:24:21 2011 for ImpalaSrc by  doxygen 1.5.1