Definition at line 2565 of file mainRepository.cpp. References Impala::Core::Feature::Dump(), Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_VAR, and Impala::Persistency::ModelLocator::SetConcept(). Referenced by mainRepository(). 02566 { 02567 ILOG_VAR(Impala.Application.Repository.DoDumpModel); 02568 CmdOptions& options = CmdOptions::GetInstance(); 02569 02570 ModelLocator loc = GetModelLocator(options, true); 02571 KeywordList concepts = GetModelKeywordList(loc); 02572 for (int i=0 ; i<concepts.size() ; i++) 02573 { 02574 loc.SetConcept(concepts[i]); 02575 Svm* svm = SvmRepository().Get(loc); 02576 Dump(svm->GetModel(), -1); 02577 delete svm; 02578 } 02579 }
Here is the call graph for this function: ![]()
|