Ignore:
Timestamp:
06/06/17 17:58:16 (7 years ago)
Author:
oabramkina
Message:

Two server levels: merging with trunk r1137.
There are bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/attribute_map.hpp

    r1009 r1158  
    1212{ 
    1313      /// ////////////////////// Déclarations ////////////////////// /// 
     14      /*! 
     15        \class CAttributeMap 
     16        This class represents the set of attributes which an object can have. 
     17        Each attribute in the set is represented by an unique id. 
     18      */ 
     19 
    1420      class CAttributeMap 
    1521         : public xios_map<StdString, CAttribute*> 
     
    3440 
    3541            void clearAttribute(const StdString& key); 
     42            bool isEqual(const CAttributeMap& another, const vector<StdString>& excludedAttrs); 
    3643 
    3744            /// Destructeur /// 
     
    7481      inline bool CAttributeMap::hasAttribute(const StdString& key) const 
    7582      { 
    76         return (this->find(key) != this->end()); 
     83         return (this->find(key) != this->end()); 
    7784      } 
    7885 
Note: See TracChangeset for help on using the changeset viewer.