Definition at line 2145 of file mainRepository.cpp. References GetFoldLocator(), Impala::CmdOptions::GetInstance(), and ILOG_VAR. Referenced by mainRepository(). 02146 { 02147 ILOG_VAR(Impala.Application.Repository.DoDiffFold); 02148 CmdOptions& options = CmdOptions::GetInstance(); 02149 02150 FoldLocator loc1 = GetFoldLocator(options, true); 02151 QuidTable* tab1 = FoldRepository().Get(loc1); 02152 if (tab1 == 0) 02153 return; 02154 FoldLocator loc2 = GetFoldLocator(options, false); 02155 QuidTable* tab2 = FoldRepository().Get(loc2); 02156 tab1->Diff(tab2); 02157 delete tab2; 02158 delete tab1; 02159 }
Here is the call graph for this function: ![]()
|