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/Inputs/BoolInput.cpp

    r25379 r25506  
    6666}
    6767/*}}}*/
     68void BoolInput::Marshall2(MarshallHandle* marshallhandle){ /*{{{*/
     69
     70        int object_enum = BoolInputEnum;
     71   marshallhandle->call(object_enum);
     72
     73        marshallhandle->call(this->size);
     74        if(this->size > 0){
     75                marshallhandle->call(this->values,this->size);
     76        }
     77        else this->values = NULL;
     78
     79}
     80/*}}}*/
    6881int  BoolInput::ObjectEnum(void){/*{{{*/
    6982
Note: See TracChangeset for help on using the changeset viewer.