#include <ExManagerCommand.h>
|
Definition at line 80 of file ExManagerCommand.h. Referenced by AddCommandAction(). |
|
Definition at line 26 of file ExManagerCommand.cpp. References LogCommand, and logfilecommand.
00027 { 00028 LogCommand = true; 00029 #ifdef UNIX_SRC 00030 logfilecommand.open("/tmp/logCommand.txt",ios::out); 00031 #else 00032 logfilecommand.open("logCommand.txt",ios::out); 00033 #endif 00034 } |
|
Definition at line 36 of file ExManagerCommand.cpp.
00037 { 00038 } |
|
Definition at line 120 of file ExManagerCommand.cpp. References AddAction(), Guard, SAction::m_Action, m_VecAction, NOTHING, and UnGuard. Referenced by AddAction(), AddNewAction(), ApplyAction(), InputCommand(), and ProcessCommand().
00121 { 00122 Guard(void ExManagerCommand::AddAction(SAction action)) 00123 //cout<<"Add Action"<<action<<endl; 00124 if(action.m_Action!=NOTHING) 00125 { 00126 m_VecAction.push_back(action); 00127 } 00128 UnGuard 00129 } |
|
Definition at line 240 of file ExManagerCommand.cpp. References AddCommandAction(), CommandAction, Guard, m_VecCommand, and UnGuard.
00241 { 00242 Guard(void ExManagerCommand::AddCommandAction(CommandAction ComAct)) 00243 m_VecCommand.push_back(ComAct); 00244 UnGuard 00245 } |
|
Definition at line 247 of file ExManagerCommand.cpp. References AddCommandAction(), CommandAction, Guard, m_VecCommand, and UnGuard.
00248 { 00249 Guard(void ExManagerCommand::AddCommandAction(int command,int action,char *param)) 00250 CommandAction ComAct; 00251 ComAct.first=command; 00252 ComAct.second.m_Action=action; 00253 ComAct.second.m_Param= new char[strlen(param)]; 00254 sprintf(ComAct.second.m_Param,"%s",param); 00255 m_VecCommand.push_back(ComAct); 00256 UnGuard 00257 } |
|
Definition at line 228 of file ExManagerCommand.cpp. References AddCommandAction(), CommandAction, Guard, SAction::m_Action, SAction::m_Param, m_VecCommand, and UnGuard.
00229 { 00230 Guard(void ExManagerCommand::AddCommandAction(int command,SAction action)) 00231 CommandAction ComAct; 00232 ComAct.first=command; 00233 ComAct.second.m_Action=action.m_Action; 00234 ComAct.second.m_Param= new char[strlen(action.m_Param)]; 00235 sprintf(ComAct.second.m_Param,"%s",action.m_Param); 00236 m_VecCommand.push_back(ComAct); 00237 UnGuard 00238 } |
|
Definition at line 217 of file ExManagerCommand.cpp. References AddCommandAction(), CommandAction, ExCFileDataAction::getAction(), ExCFileDataAction::getCommand(), ExCFileDataAction::getParam(), Guard, m_VecCommand, and UnGuard. Referenced by AddCommandAction(), Init(), and LoadCommandFile().
00217 { 00218 Guard(void ExManagerCommand::AddCommandAction(ExCFileDataAction e)) 00219 CommandAction ComAct; 00220 ComAct.first = atoi (e.getAction ().data()); 00221 ComAct.second.m_Action = e.getCommand (); 00222 ComAct.second.m_Param = new char [e.getParam ().length()]; 00223 sprintf (ComAct.second.m_Param, "%s", e.getParam().data()); 00224 m_VecCommand.push_back (ComAct); 00225 UnGuard 00226 } |
|
Definition at line 131 of file ExManagerCommand.cpp. References AddAction(), Guard, SAction::m_Action, m_VecTempAction, NOTHING, and UnGuard. Referenced by ApplyAction(), LoadExecFile(), LoadFile(), and ProcessAction().
00132 { 00133 Guard(void ExManagerCommand::AddAction(SAction action)) 00134 //cout<<"Add Action"<<action<<endl; 00135 if(action.m_Action!=NOTHING) 00136 { 00137 m_VecTempAction.push_back(action); 00138 } 00139 UnGuard 00140 } |
|
Definition at line 156 of file ExManagerCommand.cpp. References AddRepAction(), Guard, SAction::m_Action, m_ItVecRepAction, m_VecRepAction, and UnGuard. Referenced by AddRepAction(), and ProcessAction().
00157 { 00158 Guard(void ExManagerCommand::AddRepAction(SAction action)) 00159 bool already=false; 00160 int i=0; 00161 for(m_ItVecRepAction=m_VecRepAction.begin();m_ItVecRepAction!=m_VecRepAction.end();m_ItVecRepAction++,i++) 00162 { 00163 if(m_VecRepAction.at(i).m_Action==action.m_Action) 00164 { 00165 already=true; 00166 } 00167 } 00168 if(!already) 00169 { 00170 m_VecRepAction.push_back(action); 00171 } 00172 UnGuard 00173 } |
|
Definition at line 175 of file ExManagerCommand.cpp. References AddAction(), AddNewAction(), ApplyAction(), Guard, m_ItVecAction, m_ItVecRepAction, m_VecAction, m_VecRepAction, m_VecTempAction, ProcessAction(), and UnGuard. Referenced by ApplyAction(), and ExManagerOutput::DrawScene().
00176 { 00177 Guard(void ExManagerCommand::ApplyAction(void)) 00178 int i; 00179 std::vector<SAction> TmpVecAction; 00180 for(m_ItVecAction=m_VecAction.begin();m_ItVecAction!=m_VecAction.end();m_ItVecAction++,i++) 00181 { 00182 //cout<<"Aplly Action :"<<m_VecAction.at(i)<<endl; 00183 if(!ProcessAction(*m_ItVecAction)) 00184 { 00185 AddNewAction(*m_ItVecAction); 00186 } 00187 } 00188 00189 //Remove executed action 00190 /*for(m_ItVecAction=m_VecAction.begin();m_ItVecAction!=m_VecAction.end();m_ItVecAction++) 00191 { 00192 00193 if(!m_ItVecAction->AllActionDone()) 00194 { 00195 TmpVecAction.push_back(*m_ItVecAction); 00196 }else 00197 { 00198 std::cout<<"action not done :"<<m_ItVecAction->m_Action<<std::endl; 00199 } 00200 }*/ 00201 m_VecAction.clear(); 00202 //m_VecAction=TmpVecAction; 00203 for(i=0; (unsigned)i<m_VecTempAction.size();i++) 00204 { 00205 AddAction(m_VecTempAction.at(i)); 00206 } 00207 m_VecTempAction.clear(); 00208 i=0; 00209 for(m_ItVecRepAction=m_VecRepAction.begin();m_ItVecRepAction!=m_VecRepAction.end();m_ItVecRepAction++,i++) 00210 { 00211 ProcessAction(m_VecRepAction.at(i)); 00212 } 00213 00214 UnGuard 00215 } |
|
|
|
Definition at line 40 of file ExManagerCommand.cpp. References AddCommandAction(), Consol, ExCFile::exist(), FILE_COMMAND, ExCFileData::getContent(), ExCFileReader::getContent, ExCFileData::getType(), Guard, LoadCommandFile(), PREFIX, and UnGuard. Referenced by LoadCommandFile(), LoadSetOfFile(), and ProcessAction().
00041 { 00042 Guard(bool ExManagerCommand::LoadCommandFile(const char *FileName)) 00043 char buffer[255]; 00044 00045 #ifdef UNIX_SRC 00046 sprintf(buffer, PREFIX "/ExNihilo/Data/Command/%s", FileName); 00047 #else 00048 sprintf(buffer, "../Data/Command/%s",FileName); 00049 #endif 00050 00051 ExCFileReader my_file (buffer); 00052 if (! my_file.exist()) 00053 { 00054 *Consol<<"File not found: "<<buffer<<std::endl; 00055 return false; 00056 } else 00057 { 00058 *Consol<<"Loading Command File: "<<FileName<<std::endl; 00059 ExCFileData _data = my_file.getContent(); 00060 00061 if (_data.getType() != FILE_COMMAND) 00062 { 00063 *Consol<<FileName<<" is not a valide command file"<<std::endl; 00064 return false; 00065 } else 00066 { 00067 vector<ExCFileDataAction> dd = _data.getContent(); 00068 vector<ExCFileDataAction>::iterator i = dd.begin (); 00069 ExCFileDataAction f; 00070 while (i != dd.end ()) 00071 { 00072 f = *i++; 00073 AddCommandAction (f); 00074 } 00075 } 00076 return true; 00077 } 00078 00079 UnGuard 00080 } |
|
Definition at line 437 of file ExManagerCommand.cpp. References AddNewAction(), Consol, Guard, LoadExecFile(), SAction::m_Action, SAction::m_ExecutingLife, SAction::m_Param, NOTHING, SAction::SetParam(), and UnGuard. Referenced by LoadExecFile(), LoadSetOfFile(), and ProcessAction().
00438 { 00439 Guard(bool ExManagerCommand::LoadExecFile(SAction *action)) 00440 char ch; 00441 int RetVal; 00442 int FileSize; 00443 FILE *MyFile; 00444 bool endfile=false; 00445 std::string StBuffer; 00446 char buffer[255]; 00447 char *FileName; 00448 SAction NewActionA; 00449 00450 FileName= new char[strlen(action->m_Param)]; 00451 sprintf(FileName,"%s",(action->m_Param)+1); 00452 00453 sprintf(buffer,"../Data/Command/%s",FileName); 00454 00455 MyFile=fopen (buffer,"r"); 00456 if(!MyFile) 00457 { 00458 *Consol<<"File not found:"<<buffer<<std::endl; 00459 return false; 00460 }else 00461 { 00462 *Consol<<"Loading Exec File :"<<FileName<<std::endl; 00463 00464 fseek(MyFile,0,SEEK_END); 00465 FileSize=ftell(MyFile); 00466 00467 //Start of file 00468 fseek(MyFile,0,SEEK_SET); 00469 do 00470 { 00471 RetVal=fread(&ch,sizeof(char),1,MyFile); 00472 }while(ch!='#'); 00473 //reading file type; 00474 do 00475 { 00476 RetVal=fread(&ch,sizeof(char),1,MyFile); 00477 StBuffer=StBuffer+ch; 00478 }while(ch!='#'); 00479 if(strcmp(StBuffer.data(),"exec#")==0) 00480 { 00481 do 00482 { 00483 StBuffer.erase(StBuffer.begin(),StBuffer.end()); 00484 do 00485 { 00486 RetVal=fread(&ch,sizeof(char),1,MyFile); 00487 StBuffer=StBuffer+ch; 00488 }while(ch!='#'); 00489 StBuffer.erase(StBuffer.end()-1,StBuffer.end()); 00490 StBuffer.erase(StBuffer.begin(),StBuffer.begin()+1); 00491 00492 if(StBuffer.find("end of exec file")!= (unsigned)-1) 00493 { 00494 endfile=true; 00495 }else 00496 { 00497 std::cout<<StBuffer<<std::endl; 00498 //read action 00499 try 00500 { 00501 NewActionA.m_Action=atoi(StBuffer.data()); 00502 }catch(...) 00503 { 00504 NewActionA.m_Action=NOTHING; 00505 } 00506 StBuffer.erase(StBuffer.begin(),StBuffer.end()); 00507 //read param 00508 do 00509 { 00510 RetVal=fread(&ch,sizeof(char),1,MyFile); 00511 StBuffer=StBuffer+ch; 00512 }while(ch!='#'); 00513 StBuffer.erase(StBuffer.end()-1,StBuffer.end()); 00514 std::cout<<StBuffer<<std::endl; 00515 NewActionA.SetParam(StBuffer.data()); 00516 StBuffer.erase(StBuffer.begin(),StBuffer.end()); 00517 //read time to execute 00518 do 00519 { 00520 RetVal=fread(&ch,sizeof(char),1,MyFile); 00521 StBuffer=StBuffer+ch; 00522 }while(ch!='#'); 00523 StBuffer.erase(StBuffer.end()-1,StBuffer.end()); 00524 std::cout<<StBuffer<<std::endl; 00525 try 00526 { 00527 NewActionA.m_ExecutingLife=atof(StBuffer.data()); 00528 }catch(...) 00529 { 00530 NewActionA.m_ExecutingLife=-1; 00531 } 00532 std::cout<<"time to exec"<<NewActionA.m_ExecutingLife<<std::endl; 00533 00534 AddNewAction(NewActionA); 00535 } 00536 }while(!endfile); 00537 fclose(MyFile); 00538 return true; 00539 }else 00540 { 00541 *Consol<<FileName<<" is not a valide exec file"<<std::endl; 00542 return false; 00543 } 00544 } 00545 00546 UnGuard 00547 } |
|
Definition at line 549 of file ExManagerCommand.cpp. References AddNewAction(), SAction::m_Action, and SAction::SetParam(). Referenced by main().
00550 { 00551 SAction action; 00552 action.SetParam(FileName); 00553 action.m_Action=30038; 00554 AddNewAction(action); 00555 return true; 00556 } |
|
Definition at line 313 of file ExManagerCommand.cpp. References Consol, Guard, ExManagerEntite::LoadAsc(), LoadCommandFile(), LoadExecFile(), ExManagerInterface::LoadInterface(), ExManagerMap::LoadMap(), LoadSetOfFile(), ExManagerSound::LoadSound(), ExManagerConsole::LoadStringActionFile(), ManagerConsole, ManagerEntite, ManagerInterface, ManagerMap, ManagerSound, PREFIX, SAction::SetParam(), and UnGuard. Referenced by LoadSetOfFile(), and ProcessAction().
00314 { 00315 Guard(void ExManagerCommand::LoadSetOfFile(const char *FileName)) 00316 char ch; 00317 int RetVal; 00318 int FileSize; 00319 FILE *MyFile; 00320 bool endfile=false; 00321 //int tmp=0; // not used 00322 std::string StBuffer; 00323 std::string StType; 00324 char buffer[255]; 00325 00326 #ifdef UNIX_SRC 00327 sprintf(buffer, PREFIX "/ExNihilo/Data/%s",FileName); 00328 #else 00329 sprintf(buffer, "../Data/%s",FileName); 00330 #endif 00331 00332 MyFile=fopen (buffer,"r"); 00333 if(!MyFile) 00334 { 00335 *Consol<<"File not found:"<<buffer<<std::endl; 00336 }else 00337 { 00338 *Consol<<"Loading set File :"<<FileName<<std::endl; 00339 00340 fseek(MyFile,0,SEEK_END); 00341 FileSize=ftell(MyFile); 00342 //Start of file 00343 fseek(MyFile,0,SEEK_SET); 00344 do 00345 { 00346 RetVal=fread(&ch,sizeof(char),1,MyFile); 00347 }while(ch!='#'); 00348 //reading file type; 00349 do 00350 { 00351 RetVal=fread(&ch,sizeof(char),1,MyFile); 00352 StBuffer=StBuffer+ch; 00353 }while(ch!='#'); 00354 if(strcmp(StBuffer.data(),"set#")==0) 00355 { 00356 00357 do 00358 { 00359 00360 StBuffer.erase(StBuffer.begin(),StBuffer.end()); 00361 do 00362 { 00363 RetVal=fread(&ch,sizeof(char),1,MyFile); 00364 StBuffer=StBuffer+ch; 00365 }while(ch!='#'); 00366 StBuffer.erase(StBuffer.end()-1,StBuffer.end()); 00367 StBuffer.erase(StBuffer.begin(),StBuffer.begin()+1); 00368 if(StBuffer.find("end of set file") != (unsigned)-1) 00369 { 00370 endfile=true; 00371 }else 00372 { 00373 StType=StBuffer; 00374 StBuffer.erase(StBuffer.begin(),StBuffer.end()); 00375 do 00376 { 00377 RetVal=fread(&ch,sizeof(char),1,MyFile); 00378 StBuffer=StBuffer+ch; 00379 }while(ch!='#'); 00380 StBuffer.erase(StBuffer.end()-1,StBuffer.end()); 00381 00382 if(strcmp(StType.data(),"command")==0) 00383 { 00384 std::cout<<"Load command file :"<<StBuffer.data()<<std::endl; 00385 LoadCommandFile(StBuffer.data()); 00386 } 00387 if(strcmp(StType.data(),"console")==0) 00388 { 00389 std::cout<<"Load console file :"<<StBuffer.data()<<std::endl; 00390 ManagerConsole->LoadStringActionFile(StBuffer.data()); 00391 } 00392 if(strcmp(StType.data(),"interface")==0) 00393 { 00394 std::cout<<"Load interface file :"<<StBuffer.data()<<std::endl; 00395 ManagerInterface->LoadInterface(StBuffer.data()); 00396 } 00397 if(strcmp(StType.data(),"modele")==0) 00398 { 00399 std::cout<<"Load asc file :"<<StBuffer.data()<<std::endl; 00400 ManagerEntite->LoadAsc(StBuffer.data()); 00401 } 00402 if(strcmp(StType.data(),"sound")==0) 00403 { 00404 std::cout<<"Load sound file :"<<StBuffer.data()<<std::endl; 00405 ManagerSound->LoadSound(StBuffer.data()); 00406 } 00407 if(strcmp(StType.data(),"set")==0) 00408 { 00409 std::cout<<"Load set file :"<<StBuffer.data()<<std::endl; 00410 LoadSetOfFile(StBuffer.data()); 00411 } 00412 if(strcmp(StType.data(),"exec")==0) 00413 { 00414 std::cout<<"Load set file :"<<StBuffer.data()<<std::endl; 00415 00416 SAction action; 00417 action.SetParam(StBuffer.data()); 00418 LoadExecFile(&action); 00419 } 00420 if(strcmp(StType.data(),"map")==0) 00421 { 00422 std::cout<<"Load map file :"<<StBuffer.data()<<std::endl; 00423 ManagerMap->LoadMap(StBuffer.data()); 00424 } 00425 00426 } 00427 }while(!endfile); 00428 fclose(MyFile); 00429 }else 00430 { 00431 *Consol<<FileName<<" is not a valide console file"<<std::endl; 00432 } 00433 } 00434 UnGuard 00435 } |
|
|
Definition at line 106 of file ExManagerCommand.cpp. References AddAction(), Guard, m_ItVecCommand, m_VecCommand, ProcessCommand(), and UnGuard. Referenced by InputCommand(), and ProcessCommand().
00107 { 00108 Guard(void ExManagerCommand::ProcessCommand(int command)) 00109 //cout<<"Process command :"<<command<<endl; 00110 for(m_ItVecCommand=m_VecCommand.begin();m_ItVecCommand!=m_VecCommand.end();m_ItVecCommand++) 00111 { 00112 if(m_ItVecCommand->first==command) 00113 { 00114 AddAction(m_ItVecCommand->second); 00115 } 00116 } 00117 UnGuard 00118 } |
|
Definition at line 142 of file ExManagerCommand.cpp. References Guard, SAction::m_Action, m_ItVecRepAction, m_VecRepAction, RemoveRepAction(), and UnGuard. Referenced by ProcessAction(), and RemoveRepAction().
00143 { 00144 Guard(void ExManagerCommand::RemoveRepAction(SAction action)) 00145 int i=0; 00146 for(m_ItVecRepAction=m_VecRepAction.begin();m_ItVecRepAction!=m_VecRepAction.end();m_ItVecRepAction++,i++) 00147 { 00148 if(m_VecRepAction.at(i).m_Action==action.m_Action) 00149 { 00150 m_VecRepAction.erase(m_ItVecRepAction); break; 00151 } 00152 } 00153 UnGuard 00154 } |
|
|
|
Definition at line 119 of file ExManagerCommand.h. Referenced by SetManagerLink().
00119 {ManagerAnim = Anim;} |
|
Definition at line 124 of file ExManagerCommand.h. Referenced by SetManagerLink().
00124 {ManagerCam = Cam;} |
|
Definition at line 128 of file ExManagerCommand.h. Referenced by SetManagerLink().
00128 {ManagerCollision = Collision;} |
|
Definition at line 132 of file ExManagerCommand.h. Referenced by SetManagerLink().
00132 {ManagerConsole=Console;} |
|
Definition at line 121 of file ExManagerCommand.h. Referenced by SetManagerLink().
00121 {ManagerEntite = Entite;} |
|
Definition at line 118 of file ExManagerCommand.h. Referenced by SetManagerLink().
00118 {ManagerFog = Fog;} |
|
Definition at line 122 of file ExManagerCommand.h. Referenced by SetManagerLink().
00122 {ManagerGizmo = Gizmo;} |
|
Definition at line 129 of file ExManagerCommand.h. Referenced by SetManagerLink().
00129 {ManagerId = Id;} |
|
Definition at line 131 of file ExManagerCommand.h. Referenced by SetManagerLink().
00131 {ManagerInterface=Interface;} |
|
Definition at line 123 of file ExManagerCommand.h. Referenced by SetManagerLink().
00123 {ManagerLight = Light;} |
|
Definition at line 117 of file ExManagerCommand.h. Referenced by SetManagerLink().
00117 {ManagerMap = Map;} |
|
Definition at line 130 of file ExManagerCommand.h. Referenced by SetManagerLink().
00130 {ManagerMenu=Menu;} |
|
Definition at line 125 of file ExManagerCommand.h. Referenced by SetManagerLink().
00125 {ManagerParticuleSystem = ParticuleSystem;} |
|
Definition at line 127 of file ExManagerCommand.h. Referenced by SetManagerLink().
00127 {ManagerPVS = PVS;} |
|
Definition at line 133 of file ExManagerCommand.h. Referenced by SetManagerLink().
00133 {ManagerSound=Sound;} |
|
Definition at line 134 of file ExManagerCommand.h. Referenced by SetManagerLink().
00134 {ManagerSpirit=Spirit;} |
|
Definition at line 126 of file ExManagerCommand.h. Referenced by SetManagerLink().
00126 {ManagerTexture = Texture;} |
|
Definition at line 120 of file ExManagerCommand.h. Referenced by SetManagerLink().
00120 {ManagerWindow = Window;} |
|
Definition at line 144 of file ExManagerCommand.h. References m_MousePosX, and m_MousePosY. Referenced by ExManagerInputGLUT::Key(), ExManagerInputGLUT::KeySpe(), ExManagerInputGLUT::KeySpeUp(), ExManagerInputGLUT::KeyUp(), and ExManagerInputGLUT::Mouse().
00144 {m_MousePosX=posx;m_MousePosY=posy;} |
|
Definition at line 114 of file ExManagerCommand.h. Referenced by LoadCommandFile(), LoadExecFile(), LoadSetOfFile(), ProcessAction(), and SetManagerLink(). |
|
Definition at line 101 of file ExManagerCommand.h. Referenced by ExManagerCommand(). |
|
Definition at line 102 of file ExManagerCommand.h. Referenced by ExManagerCommand(), and ProcessAction(). |
|
Definition at line 85 of file ExManagerCommand.h. Referenced by ApplyAction(). |
|
Definition at line 82 of file ExManagerCommand.h. Referenced by ProcessCommand(). |
|
Definition at line 89 of file ExManagerCommand.h. Referenced by AddRepAction(), ApplyAction(), and RemoveRepAction(). |
|
Definition at line 77 of file ExManagerCommand.h. Referenced by InputCommand(), and SetMousePosition(). |
|
Definition at line 78 of file ExManagerCommand.h. Referenced by InputCommand(), and SetMousePosition(). |
|
Definition at line 84 of file ExManagerCommand.h. Referenced by AddAction(), and ApplyAction(). |
|
Definition at line 81 of file ExManagerCommand.h. Referenced by AddCommandAction(), and ProcessCommand(). |
|
Definition at line 88 of file ExManagerCommand.h. Referenced by AddRepAction(), ApplyAction(), and RemoveRepAction(). |
|
Definition at line 86 of file ExManagerCommand.h. Referenced by AddNewAction(), and ApplyAction(). |
|
Definition at line 61 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 66 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 70 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 73 of file ExManagerCommand.h. Referenced by InputCommand(), LoadSetOfFile(), and ProcessAction(). |
|
Definition at line 63 of file ExManagerCommand.h. Referenced by LoadSetOfFile(), and ProcessAction(). |
|
Definition at line 60 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 64 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 71 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 72 of file ExManagerCommand.h. Referenced by InputCommand(), LoadSetOfFile(), and ProcessAction(). |
|
Definition at line 65 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 59 of file ExManagerCommand.h. Referenced by LoadSetOfFile(), and ProcessAction(). |
|
Definition at line 58 of file ExManagerCommand.h. |
|
Definition at line 67 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 69 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 75 of file ExManagerCommand.h. Referenced by LoadSetOfFile(), and ProcessAction(). |
|
Definition at line 74 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 68 of file ExManagerCommand.h. Referenced by ProcessAction(). |
|
Definition at line 62 of file ExManagerCommand.h. Referenced by InputCommand(), and ProcessAction(). |
|
Referenced by SetManagerLink(). |