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/Vertex.cpp

    r23640 r25506  
    128128        MARSHALLING(sigma);
    129129        MARSHALLING(connectivity);
     130
     131}
     132/*}}}*/
     133void Vertex::Marshall2(MarshallHandle* marshallhandle){ /*{{{*/
     134
     135        int object_enum = VertexEnum;
     136        marshallhandle->call(object_enum);
     137
     138        marshallhandle->call(this->clone);
     139        marshallhandle->call(this->domaintype);
     140        marshallhandle->call(this->id);
     141        marshallhandle->call(this->sid);
     142        marshallhandle->call(this->pid);
     143        marshallhandle->call(this->lid);
     144        marshallhandle->call(this->x);
     145        marshallhandle->call(this->y);
     146        marshallhandle->call(this->z);
     147        marshallhandle->call(this->sigma);
     148        marshallhandle->call(this->connectivity);
    130149
    131150}
Note: See TracChangeset for help on using the changeset viewer.