Definition at line 1840 of file mainRepository.cpp. References GetAnnotationTableSetLocator(), Impala::CmdOptions::GetInstance(), and ILOG_VAR. Referenced by mainRepository(). 01841 { 01842 ILOG_VAR(Impala.Application.Repository.DoDiffAnnotationTableSet); 01843 CmdOptions& options = CmdOptions::GetInstance(); 01844 01845 AnnotationTableSetLocator loc1 = GetAnnotationTableSetLocator(options, true); 01846 AnnotationTableSet* tSet1 = AnnotationTableSetRepository().Get(loc1); 01847 if (tSet1 == 0) 01848 return; 01849 AnnotationTableSetLocator loc2 = GetAnnotationTableSetLocator(options, false); 01850 AnnotationTableSet* tSet2 = AnnotationTableSetRepository().Get(loc2); 01851 tSet1->Diff(tSet2); 01852 delete tSet2; 01853 delete tSet1; 01854 }
Here is the call graph for this function: ![]()
|