Ignore:
Timestamp:
Jan 28, 2014, 11:56:15 AM (10 years ago)
Author:
lemeur
Message:

liste des logiciels compatibles dans les tooltip des elements

File:
1 edited

Legend:

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

    r481 r485  
    2424  dataManager* dataManager_;
    2525  string inputFileName_;
    26   nomDeLogiciel nameOfSoftware_;
     26  nomDeLogiciel* nameOfSoftware_;
    2727
    2828  /**
    2929     Accepted elements list for this software
    3030  */
    31   std::vector <nomdElements::typedElement> acceptedElements_;
     31  //  std::vector <nomdElements::typedElement> acceptedElements_;
    3232
    3333  /**
    3434     Ignore software list for this element
    3535  */
    36   std::vector <nomdElements::typedElement> ignoredElements_;
     36  //  std::vector <nomdElements::typedElement> ignoredElements_;
    3737 
    3838  abstractSoftware();
     
    4040  bool launchJob(string commandLine, string& resul);
    4141
    42   void registerElement(nomdElements::typedElement nomdel,trivaluedBool b);
     42  //  void registerElement(nomdElements::typedElement nomdel,trivaluedBool b);
    4343
    4444  sectionToExecute* getSectionToExecute() {
     
    4949
    5050  abstractSoftware(string, sectionToExecute*, dataManager* );
    51   ~abstractSoftware() {;}
     51  ~abstractSoftware() {
     52    delete nameOfSoftware_;
     53}
    5254
    5355  inline const nomDeLogiciel* getNomDeLogiciel() const {
    54     return &nameOfSoftware_;
     56    return nameOfSoftware_;
    5557  }
    5658
    57   trivaluedBool doAcceptElement(nomdElements::typedElement typdel);
     59  //   trivaluedBool doAcceptElement(nomdElements::typedElement typdel);
    5860
    5961  virtual bool createInputFile(particleBeam* beamBefore, string workingDir) = 0;
     
    6971   */
    7072  inline string getName() const {
    71     return nameOfSoftware_.getString();
     73    return nameOfSoftware_->getString();
    7274  }
    7375  private :
Note: See TracChangeset for help on using the changeset viewer.