Ignore:
Timestamp:
06/22/10 10:30:33 (14 years ago)
Author:
hozdoba
Message:

Quelques changements de portée essentiellement. Modificiations mineures.

File:
1 edited

Legend:

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

    r108 r113  
    1010   class AttributRegistrar 
    1111   { 
    12       public : 
     12      protected : 
    1313 
    1414         AttributRegistrar():attrList() 
     
    1818         const StrHashMap<BaseAttribut>& getAttributList(void) const { return (attrList); } 
    1919         size_t getNbAttributes() const {return (attrList.getSize()); } 
    20          bool hasAttribut(const string& _id) { return (attrList.hasMappedValue(_id)); } 
     20         bool hasAttribut(const string& _id) const { return (attrList.hasMappedValue(_id)); } 
    2121 
    2222         BaseAttribut* getAttribut(const string& _id) throw (XMLIOUndefinedValueException) { return (attrList[_id]); } 
     
    5656         } 
    5757 
    58       public : 
    59  
    6058        ~AttributRegistrar(void) 
    6159        {/* Ne rien faire de plus */} 
    6260 
    63       protected : 
     61      private : 
     62 
    6463         StrHashMap<BaseAttribut> attrList; 
    6564 
Note: See TracChangeset for help on using the changeset viewer.