Ignore:
Timestamp:
Dec 12, 2013, 12:14:25 PM (10 years ago)
Author:
garnier
Message:

Modifications en vue de changer l'interface utilisateur

File:
1 edited

Legend:

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

    r443 r449  
    99  public :
    1010 
    11   sector();
     11  sector(std::string name = "sector default name");
    1212  virtual ~sector();
    1313  /**
     
    2121
    2222  /**
    23    Set the original sector from where this sector is reflected
     23   Set the original sector from where this sector is reflected/duplicated
    2424   */
    25   inline void setReflectedFrom(sector* s) { reflectedFrom_ = s;};
     25  inline void setDuplicatedFrom(sector* s) { duplicatedFrom_ = s;};
    2626  /**
    27    Get the original sector from where this sector is reflected. return NULL if not
     27   Get the original sector from where this sector is reflected/duplicated. Return NULL if not
    2828   */
    29   inline sector* getReflectedFrom() { return reflectedFrom_;};
     29  inline sector* getDuplicatedFrom() { return duplicatedFrom_;};
    3030
    3131
     
    7878  std::string name_;
    7979  bool reflected_;
    80   sector* reflectedFrom_;
     80  sector* duplicatedFrom_;
    8181  unsigned int repetitionNumber_;
    8282};
Note: See TracChangeset for help on using the changeset viewer.