Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Application::Repository::DoCopyKeywordList (  ) 

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:


Generated on Thu Jan 13 09:15:48 2011 for ImpalaSrc by  doxygen 1.5.1