Changeset 25836 for issm/trunk/src/c/classes/Params/DataSetParam.cpp
- Timestamp:
- 12/08/20 08:45:53 (4 years ago)
- Location:
- issm/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c
- Property svn:ignore
-
old new 23 23 issm_ocean 24 24 issm_dakota 25 issm_post
-
- Property svn:ignore
-
issm/trunk/src/c/classes/Params/DataSetParam.cpp
r23189 r25836 52 52 int DataSetParam::Id(void){ return -1; }/*{{{*/ 53 53 /*}}}*/ 54 void DataSetParam::Marshall( char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/54 void DataSetParam::Marshall(MarshallHandle* marshallhandle){ /*{{{*/ 55 55 56 if(marshall _direction==MARSHALLING_BACKWARD)value=new DataSet();56 if(marshallhandle->OperationNumber()==MARSHALLING_LOAD)value=new DataSet(); 57 57 58 MARSHALLING_ENUM(DataSetParamEnum); 59 MARSHALLING(enum_type); 60 value->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 58 int object_enum=DataSetParamEnum; 59 marshallhandle->call(object_enum); 60 marshallhandle->call(this->enum_type); 61 value->Marshall(marshallhandle); 61 62 62 63 }
Note:
See TracChangeset
for help on using the changeset viewer.