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

void Impala::Application::Repository::DoCopyBestFile (  ) 

Definition at line 2470 of file mainRepository.cpp.

References Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_VAR, and Impala::Persistency::ModelLocator::SetConcept().

Referenced by mainRepository().

02471 {
02472     ILOG_VAR(Impala.Application.Repository.DoCopyDiffBestFile);
02473     CmdOptions& options = CmdOptions::GetInstance();
02474 
02475     ModelLocator loc1 = GetModelLocator(options, true);
02476     ModelLocator loc2 = GetModelLocator(options, false);
02477     KeywordList concepts = GetModelKeywordList(loc1);
02478     for (int i=0 ; i<concepts.size() ; i++)
02479     {
02480         loc1.SetConcept(concepts[i]);
02481         Util::PropertySet* bestFile = BestFileRepository().Get(loc1);
02482         loc2.SetConcept(concepts[i]);
02483         BestFileRepository().Add(loc2, bestFile);
02484         delete bestFile;
02485     }
02486 }

Here is the call graph for this function:


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