Definition at line 1614 of file mainRepository.cpp. References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), GetKeywordListLocator(), and ILOG_VAR. Referenced by mainRepository(). 01615 { 01616 ILOG_VAR(Impala.Application.Repository.DoCopyKeywordList); 01617 CmdOptions& options = CmdOptions::GetInstance(); 01618 01619 KeywordListLocator loc1 = GetKeywordListLocator(options, true); 01620 KeywordList* keyList = KeywordListRepository().Get(loc1); 01621 KeywordListLocator loc2 = GetKeywordListLocator(options, false); 01622 if (options.GetBool("sync")) 01623 KeywordListRepository().Sync(loc2, keyList); 01624 else 01625 KeywordListRepository().Add(loc2, keyList); 01626 delete keyList; 01627 }
Here is the call graph for this function: ![]()
|