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: ![]()
|