Definition at line 1410 of file mainIDo.cpp. References Exec(), GetWalkerProg(), ILOG_ERROR, mConcepts, mModel, and mSetName. Referenced by HandleCmd(). 01411 { 01412 if (mConcepts.empty()) 01413 { 01414 ILOG_ERROR("ImportConceptsExec: need concepts"); 01415 return; 01416 } 01417 if (mModel.empty()) 01418 { 01419 ILOG_ERROR("ImportConceptsExec: need model"); 01420 return; 01421 } 01422 01423 String prog = GetWalkerProg(); 01424 String frameWalk("--virtualWalk"); 01425 Exec(prog, "importconcepts " + mSetName + " " + mConcepts + " " + 01426 mModel + " " + feature + " " + frameWalk); 01427 }
Here is the call graph for this function: ![]()
|