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

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

Definition at line 37 of file SimpleMap.h.

Referenced by Impala::Application::Util::DoImportAnnotationsOrk(), and Impala::Application::Util::DoJudgeConcepts().

00038     {
00039         ConstIter it = mMap.find(idx);
00040         if (it == mMap.end())
00041             return false;
00042         elem = it->second;
00043         return true;
00044     }


Generated on Fri Mar 19 11:41:15 2010 for ImpalaSrc by  doxygen 1.5.1