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

void Impala::Persistency::ImageSetsRepository::Register ( ImageSet vs,
String  setName 
) [inline]

Definition at line 66 of file ImageSetsRepository.h.

References GetId(), ILOG_ERROR, and mSetMap.

Referenced by Impala::Core::ImageSet::ImageSet::ImageSet().

00067     {
00068         if (setName.empty())
00069         {
00070             ILOG_ERROR("Cannot find setName because it is empty");
00071             return;
00072         }
00073         int id = GetId(setName);
00074         if (id == 0)
00075         {
00076             ILOG_ERROR("Cannot find " << setName);
00077             return;
00078         }
00079         mSetMap.Add(id, vs);
00080     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:23:07 2011 for ImpalaSrc by  doxygen 1.5.1