Ignore:
Timestamp:
10/11/10 16:10:10 (14 years ago)
Author:
hozdoba
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/XMLIO/file.hpp

    r127 r128  
    7777         } 
    7878 
    79          void resolveFieldRefInheritance(void) 
     79         void solveFieldRefInheritance(void) 
    8080         { // Résolution des héritages par référence de chacun des champs contenus dans le fichier. 
    8181            std::vector<CField*> allF; this->getAllFields(allF); 
    82             for (unsigned int i = 0; i < allF.size(); i++) allF[i]->resolveRefInheritance(); 
     82            for (unsigned int i = 0; i < allF.size(); i++) allF[i]->solveRefInheritance(); 
    8383         } 
    8484 
     
    153153         virtual void printChild(ostream& out) const { out << *vfieldGroup << std::endl; } 
    154154 
    155          virtual void resolveDescInheritance(const AttributRegistrar* const _parent = 0) 
    156          { addAttributes(*_parent); if(vfieldGroup != NULL) vfieldGroup->resolveDescInheritance(); } 
     155         virtual void solveDescInheritance(const AttributRegistrar* const _parent = 0) 
     156         { addAttributes(*_parent); if(vfieldGroup != NULL) vfieldGroup->solveDescInheritance(); } 
    157157 
    158158         virtual  ~CFile(void) 
Note: See TracChangeset for help on using the changeset viewer.