Definition at line 688 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetKeywordListLocator(), ILOG_VAR, and Impala::Core::Table::KeywordListDiff(). Referenced by mainRepository(). 00689 { 00690 ILOG_VAR(Impala.Application.Repository.DoDiffKeywordList); 00691 CmdOptions& options = CmdOptions::GetInstance(); 00692 00693 KeywordListLocator loc1 = GetKeywordListLocator(options, true); 00694 KeywordList keyList1 = *(KeywordListRepository().Get(loc1)); 00695 KeywordListLocator loc2 = GetKeywordListLocator(options, false); 00696 KeywordList keyList2 = *(KeywordListRepository().Get(loc2)); 00697 Core::Table::KeywordListDiff(keyList1, keyList2); 00698 }
Here is the call graph for this function:
|