Definition at line 1601 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetKeywordListLocator(), ILOG_VAR, and Impala::Core::Table::KeywordListDiff(). Referenced by mainRepository(). 01602 { 01603 ILOG_VAR(Impala.Application.Repository.DoDiffKeywordList); 01604 CmdOptions& options = CmdOptions::GetInstance(); 01605 01606 KeywordListLocator loc1 = GetKeywordListLocator(options, true); 01607 KeywordList keyList1 = *(KeywordListRepository().Get(loc1)); 01608 KeywordListLocator loc2 = GetKeywordListLocator(options, false); 01609 KeywordList keyList2 = *(KeywordListRepository().Get(loc2)); 01610 Core::Table::KeywordListDiff(keyList1, keyList2); 01611 }
Here is the call graph for this function: ![]()
|