Ignore:
Timestamp:
Jun 21, 2013, 2:32:47 PM (11 years ago)
Author:
lemeur
Message:

ajout de l'include algorithm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/controler/include/dataManager.h

    r418 r419  
    3131  particleBeam* getDiagnosticBeam(string elementLabel);
    3232
    33   void addSectionToExecute(abstractElement* debut,int debutIndex, abstractElement* fin, int finIndex, abstractSoftware* prog);
     33  sectionToExecute*  addSectionToExecute(abstractElement* debut,int debutIndex, abstractElement* fin, int finIndex, nomDeLogiciel logiciel);
    3434
    3535  abstractElement* addElement(nomdElements::typedElement elemType);
     
    6565    bool restoreElements(string inputFileName);
    6666   
    67     abstractSoftware* createSoftwareConnexion(nomDeLogiciel logi);
    6867   
    6968    /** return the jobList size
    7069     */
    71     inline int getJobListSize() {
     70    inline int getJobListSize() const {
    7271        return jobList_.size();
    7372    }
     
    8685     return NULL if the index does not exist
    8786     */
    88     inline sectionToExecute* getJobListAt(int a) {
    89         if (a < 0) return NULL;
    90         if (a >= getJobListSize()) return NULL;
    91         return jobList_[a];
    92     }
     87
     88    /* inline sectionToExecute* getJobListAt(int a) { */
     89    /*     if (a < 0) return NULL; */
     90    /*     if (a >= getJobListSize()) return NULL; */
     91    /*     return jobList_[a]; */
     92    /* } */
     93
     94
     95
     96    /* inline const abstractSoftware* getSoftwareOfSection( int index) const { */
     97    /*     if (index < 0) return NULL; */
     98    /*     if (index >= getJobListSize()) return NULL; */
     99    /*  return jobList_[index]->getSoftware(); */
     100    /* } */
    93101   
    94102    /** Clear a specific jobList */
     
    111119    void removeFile(string nameOfFile);
    112120    void clearSectionToExecute();
    113  
     121     abstractSoftware* createSoftwareConnexion(nomDeLogiciel logi);
     122
    114123  };
    115124#endif
Note: See TracChangeset for help on using the changeset viewer.