Ignore:
Timestamp:
06/04/21 11:57:21 (3 years ago)
Author:
yushan
Message:

Big commit on graph functionality. Other graph related dev

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/attribute_enum_impl.hpp

    r1219 r2146  
    214214    CInterface::AttributeFortranInterfaceGetDeclaration<string>(oss, className, this->getName()); 
    215215  } 
     216   
     217  template <class T> 
     218  StdString CAttributeEnum<T>::_dumpGraph(void) const 
     219  { 
     220     StdOStringStream oss; 
     221     if (!CEnum<T>::isEmpty() && this->hasId()) 
     222        oss << this->getName() << "=" << CEnum<T>::toString() << "</br>"; 
     223     return (oss.str()); 
     224  } 
    216225} // namespace xios 
    217226 
Note: See TracChangeset for help on using the changeset viewer.