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/context.hpp

    r126 r128  
    111111         } 
    112112 
    113          virtual void resolveDescInheritance(const AttributRegistrar* const _parent = 0) 
     113         virtual void solveDescInheritance(const AttributRegistrar* const _parent = 0) 
    114114         { 
    115115            if (_parent != 0) return; 
    116116            // Résolution des héritages descendants pour chacun des groupes de définitions. 
    117             if(fieldDef  != NULL) fieldDef ->resolveDescInheritance(); 
    118             if(fileDef   != NULL) fileDef  ->resolveDescInheritance(); 
    119             if(axisDef   != NULL) axisDef  ->resolveDescInheritance(); 
    120             if(gridDef   != NULL) gridDef  ->resolveDescInheritance(); 
    121             if(domainDef != NULL) domainDef->resolveDescInheritance(); 
     117            if(fieldDef  != NULL) fieldDef ->solveDescInheritance(); 
     118            if(fileDef   != NULL) fileDef  ->solveDescInheritance(); 
     119            if(axisDef   != NULL) axisDef  ->solveDescInheritance(); 
     120            if(gridDef   != NULL) gridDef  ->solveDescInheritance(); 
     121            if(domainDef != NULL) domainDef->solveDescInheritance(); 
    122122         } 
    123123 
     
    154154 
    155155         // Ne plus utiliser, disponible dans les classe treatment. 
    156          static void ResolveInheritance(void) 
     156         static void SolveInheritance(void) 
    157157         { 
    158158            Poco::HashMap<string, StrHashMap<Context> > &AllListContext = Context::GetAllListObject(); 
     
    161161               // Résolution des héritages descendants (càd des héritages de groupes) pour chacun des contextes. 
    162162               Context::SetCurrentContext((*it).first); 
    163                ((*it).second)[(*it).first]->resolveDescInheritance(); 
     163               ((*it).second)[(*it).first]->solveDescInheritance(); 
    164164 
    165165               // Résolution des héritages par référence au niveau des fichiers. 
    166166               const std::vector<CFile*>& allFiles = CFile::GetCurrentListObject().getVector(); 
    167                for (unsigned int i = 0; i < allFiles.size(); i++) allFiles[i]->resolveFieldRefInheritance(); 
     167               for (unsigned int i = 0; i < allFiles.size(); i++) allFiles[i]->solveFieldRefInheritance(); 
    168168            } 
    169169         } 
Note: See TracChangeset for help on using the changeset viewer.