Changeset 24379 for issm/trunk-jpl/src/c/datastructures/DataSet.cpp
- Timestamp:
- 11/21/19 14:54:55 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/datastructures/DataSet.cpp
r23690 r24379 215 215 this->AddObject(seg); 216 216 } 217 else if(obj_enum==BoolInputEnum){218 BoolInput* boolinput=NULL;219 boolinput=new BoolInput();220 boolinput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);221 this->AddObject(boolinput);222 }223 else if(obj_enum==DoubleInputEnum){224 DoubleInput* doubleinput=NULL;225 doubleinput=new DoubleInput();226 doubleinput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);227 this->AddObject(doubleinput);228 }229 else if(obj_enum==IntInputEnum){230 IntInput* intinput=NULL;231 intinput=new IntInput();232 intinput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);233 this->AddObject(intinput);234 }235 else if(obj_enum==ControlInputEnum){236 ControlInput* cinput=NULL;237 cinput=new ControlInput();238 cinput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);239 this->AddObject(cinput);240 }241 else if(obj_enum==TransientInputEnum){242 TransientInput* transinput=NULL;243 transinput=new TransientInput();244 transinput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);245 this->AddObject(transinput);246 }247 else if(obj_enum==TriaInputEnum){248 TriaInput* triainput=NULL;249 triainput=new TriaInput();250 triainput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);251 this->AddObject(triainput);252 }253 else if(obj_enum==PentaInputEnum){254 PentaInput* pentainput=NULL;255 pentainput=new PentaInput();256 pentainput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);257 this->AddObject(pentainput);258 }259 else if(obj_enum==TetraInputEnum){260 TetraInput* tetrainput=NULL;261 tetrainput=new TetraInput();262 tetrainput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);263 this->AddObject(tetrainput);264 }265 else if(obj_enum==SegInputEnum){266 SegInput* seginput=NULL;267 seginput=new SegInput();268 seginput->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);269 this->AddObject(seginput);270 }271 217 else if(obj_enum==RiftfrontEnum){ 272 218 Riftfront* rift=NULL;
Note:
See TracChangeset
for help on using the changeset viewer.