Definition at line 43 of file mainRepository.cpp. References Impala::Core::Column::Contains(), Impala::Persistency::ImageSetsRepository::GetInstance(), Impala::Persistency::VideoSetsRepository::GetInstance(), ILOG_ERROR, and ILOG_VAR. Referenced by DoDumpAnnotationTable(), DoDumpAnnotationTableSet(), and GetRawDataSet(). 00044 { 00045 ILOG_VAR(Impala.Application.Repository.GetRawDataSet); 00046 00047 Locator loc(locString, setName); 00048 RawDataSet* dataSet = 0; 00049 if (VideoSetsRepository::GetInstance().Contains(setName)) 00050 { 00051 dataSet = VideoSetRepository().Get(loc); 00052 } 00053 else if (ImageSetsRepository::GetInstance().Contains(setName)) 00054 { 00055 ImageSetLocator imSetLoc(loc, ""); 00056 dataSet = ImageSetRepository().Get(imSetLoc); 00057 } 00058 else if (required) 00059 { 00060 ILOG_ERROR("Could find " << loc); 00061 } 00062 return dataSet; 00063 }
Here is the call graph for this function:
|