Home || Visual Search || Applications || Architecture || 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::DoAPConfusion(), Impala::Application::Util::DoImportAnnotationsOrk(), Impala::Application::Util::DoJudgeConcepts(), and Impala::Application::Util::DoScoreConcepts().

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 Thu Jan 13 09:24:21 2011 for ImpalaSrc by  doxygen 1.5.1