Ignore:
Timestamp:
09/01/20 13:22:48 (5 years ago)
Author:
Mathieu Morlighem
Message:

NEW: new way of Marshalling femmodel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r25488 r25506  
    158158}
    159159/*}}}*/
     160void Penta::Marshall2(MarshallHandle* marshallhandle){ /*{{{*/
     161
     162        int object_enum = PentaEnum;
     163   marshallhandle->call(object_enum);
     164        marshallhandle->call(this->isonsurface);
     165        marshallhandle->call(this->isonbase);
     166
     167        /*Call parent classes: */
     168        ElementHook::Marshall2(marshallhandle);
     169        Element::MarshallElement2(marshallhandle,this->numanalyses);
     170        PentaRef::Marshall2(marshallhandle);
     171
     172        vertices = (Vertex**)this->hvertices->deliverp();
     173        material = (Material*)this->hmaterial->delivers();
     174        verticalneighbors = (Penta**)this->hneighbors->deliverp();
     175}/*}}}*/
    160176
    161177/*Other*/
Note: See TracChangeset for help on using the changeset viewer.