Definition at line 2427 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_VAR, Impala::Util::PropertySet::Print(), and Impala::Persistency::ModelLocator::SetConcept(). Referenced by mainRepository(). 02428 { 02429 ILOG_VAR(Impala.Application.Repository.DoDumpBestFile); 02430 02431 CmdOptions& options = CmdOptions::GetInstance(); 02432 ModelLocator loc = GetModelLocator(options, true); 02433 KeywordList concepts = GetModelKeywordList(loc); 02434 for (int i=0 ; i<concepts.size() ; i++) 02435 { 02436 loc.SetConcept(concepts[i]); 02437 Util::PropertySet* bestFile = BestFileRepository().Get(loc); 02438 if (bestFile) 02439 { 02440 bestFile->Print(std::cout); 02441 std::cout << std::endl; 02442 delete bestFile; 02443 } 02444 } 02445 }
Here is the call graph for this function: ![]()
|