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

void Impala::Persistency::VideoSetsRepository::Register ( VideoSet vs,
String  setName 
) [inline]

Definition at line 74 of file VideoSetsRepository.h.

References GetId(), ILOG_ERROR, and mSetMap.

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

00075     {
00076         if (setName.empty())
00077         {
00078             ILOG_ERROR("Cannot find 'setName' because it is empty");
00079             return;
00080         }
00081         int id = GetId(setName);
00082         if (id == 0)
00083         {
00084             ILOG_ERROR("Register: Cannot find id for set named: " << setName);
00085             return;
00086         }
00087         mSetMap.Add(id, vs);
00088     }

Here is the call graph for this function:


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