Definition at line 340 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetSegmentationLocator(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00341 { 00342 ILOG_VAR(Impala.Application.Repository.DoCopySegmentation); 00343 CmdOptions& options = CmdOptions::GetInstance(); 00344 00345 SegmentationLocator loc1 = GetSegmentationLocator(options, true); 00346 VideoSet* vidSet = GetVideoSet(options, true); 00347 Segmentation* seg = SegmentationRepository().Get(loc1, vidSet); 00348 00349 SegmentationLocator loc2 = GetSegmentationLocator(options, false); 00350 SegmentationRepository().Add(loc2, seg); 00351 delete seg; 00352 delete vidSet; 00353 }
Here is the call graph for this function:
|