Changeset 1828 in Sophya
- Timestamp:
- Dec 19, 2001, 6:53:12 PM (24 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piacmd.cc
r1570 r1828 17 17 #include "cxxexecutor.h" 18 18 #include "cxxexecwin.h" 19 #include "contmodex.h" 19 20 20 21 #include PISTDWDG_H … … 333 334 CxxExecutor * cxxe = new CxxExecutor(this, app); 334 335 cxxexec = cxxe; 336 337 ContModExecutor *cntxx = new ContModExecutor(this, app);//_OP_ 338 cntexec = cntxx; //_OP_ 339 335 340 cxxoptwin = new CxxOptionWind(app, cxxe); 336 341 cxxexwin = new CxxExecWind(app, cxxe); -
trunk/SophyaPI/PIext/piacmd.h
r1565 r1828 18 18 #include "dlftypes.h" 19 19 #include "pdlmgr.h" 20 21 20 22 21 // Classe definissant l'interface pour un executeur de commande … … 93 92 inline CmdInterpreter* CurrentInterpreter() { return(curcmdi); } 94 93 inline CmdExecutor* BaseExecutor() { return(basexec); } 94 inline CmdExecutor* ContExecutor() { return(cntexec); } //_OP_ 95 95 inline PIStdImgApp* GetImgApp() { return(mImgApp); } 96 96 … … 116 116 CmdExecutor* cxxexec; // on-line c++ compile/execution command executor 117 117 118 CmdExecutor *cntexec; // contour executor _OP_ 119 118 120 // Pour enregistrer la liste de commandes et leurs executeurs et le help 119 121 struct cmdex {int group; string us; CmdExecutor * cex; } ;
Note:
See TracChangeset
for help on using the changeset viewer.