Changeset 1828 in Sophya


Ignore:
Timestamp:
Dec 19, 2001, 6:53:12 PM (24 years ago)
Author:
perderos
Message:

Ajout du command executor pour trace de contour - Olivier 19/12/2001

Location:
trunk/SophyaPI/PIext
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/piacmd.cc

    r1570 r1828  
    1717#include "cxxexecutor.h"
    1818#include "cxxexecwin.h"
     19#include "contmodex.h"
    1920
    2021#include PISTDWDG_H
     
    333334CxxExecutor * cxxe = new CxxExecutor(this, app);
    334335cxxexec = cxxe;
     336
     337ContModExecutor *cntxx = new ContModExecutor(this, app);//_OP_
     338cntexec = cntxx; //_OP_
     339
    335340cxxoptwin = new  CxxOptionWind(app, cxxe);
    336341cxxexwin  = new  CxxExecWind(app, cxxe);
  • trunk/SophyaPI/PIext/piacmd.h

    r1565 r1828  
    1818#include "dlftypes.h"
    1919#include "pdlmgr.h"
    20 
    2120
    2221// Classe definissant l'interface pour un executeur de commande
     
    9392  inline  CmdInterpreter* CurrentInterpreter() { return(curcmdi); }
    9493  inline  CmdExecutor*    BaseExecutor()  { return(basexec); }
     94  inline  CmdExecutor*    ContExecutor()  { return(cntexec); } //_OP_
    9595  inline  PIStdImgApp*    GetImgApp() { return(mImgApp); }
    9696
     
    116116  CmdExecutor* cxxexec;  // on-line c++ compile/execution command executor
    117117
     118  CmdExecutor *cntexec; // contour executor _OP_
     119 
    118120// Pour enregistrer la liste de commandes et leurs executeurs et le help
    119121  struct cmdex {int group; string us; CmdExecutor * cex; } ;
Note: See TracChangeset for help on using the changeset viewer.