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_template.hpp

    r780 r1158  
    1616{ 
    1717      /// ////////////////////// Déclarations ////////////////////// /// 
     18  /*! 
     19    \class CAttributeTemplate 
     20    The class implements attribute of some basic types 
     21  */ 
    1822      template <class T> 
    1923         class CAttributeTemplate : public CAttribute, public CType<T> 
     
    5458            bool hasInheritedValue(void) const; 
    5559 
     60            bool isEqual_(const CAttributeTemplate& attr ); 
     61            bool isEqual(const CAttribute& attr ); 
     62 
    5663            /// Destructeur /// 
    5764            virtual ~CAttributeTemplate(void) { } 
     
    6269            /// Autre /// 
    6370            virtual StdString toString(void) const { return _toString();} 
    64             virtual void fromString(const StdString & str) { _fromString(str);} 
     71            virtual void fromString(const StdString & str) { if (str==resetInheritanceStr) { reset(); _canInherite=false ;}  else _fromString(str);} 
    6572//            virtual CAttributeTemplate* clone() const {} 
    6673//            virtual void toBinary  (StdOStream & os) const; 
Note: See TracChangeset for help on using the changeset viewer.