Definition at line 77 of file mainRepository.cpp. References Impala::Core::Column::Contains(), Impala::Persistency::ImageSetsRepository::GetInstance(), ILOG_ERROR, and ILOG_VAR. Referenced by DoCopyImageSet(), DoDiffImageSet(), DoDumpImageSet(), and GetImageSet(). 00078 { 00079 ILOG_VAR(Impala.Application.Repository.GetImageSet); 00080 00081 ImageSetLocator loc(locString, setName); 00082 ImageSet* imSet = 0; 00083 if (ImageSetsRepository::GetInstance().Contains(setName)) 00084 { 00085 imSet = ImageSetRepository().Get(loc); 00086 } 00087 else if (required) 00088 { 00089 ILOG_ERROR("Could find " << loc); 00090 } 00091 return imSet; 00092 }
Here is the call graph for this function:
|