Definition at line 834 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetStillsLocator(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00835 { 00836 ILOG_VAR(Impala.Application.Repository.DoDiffStills); 00837 CmdOptions& options = CmdOptions::GetInstance(); 00838 00839 StillsLocator loc1 = GetStillsLocator(options, true); 00840 VideoSet* vidSet1 = GetVideoSet(options, true); 00841 Stills* stills1 = StillsRepository().Get(loc1, vidSet1); 00842 00843 StillsLocator loc2 = GetStillsLocator(options, false); 00844 VideoSet* vidSet2 = VideoSetRepository().Get(loc2); 00845 Stills* stills2 = StillsRepository().Get(loc2, vidSet2); 00846 00847 stills1->Diff(stills2); 00848 00849 delete stills2; 00850 delete stills1; 00851 delete vidSet2; 00852 delete vidSet1; 00853 }
Here is the call graph for this function: ![]()
|