Changeset 22555
- Timestamp:
- 03/17/18 21:53:59 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs/Inputs.cpp
r22522 r22555 32 32 33 33 _assert_(in_input); 34 35 /*Delete input if it already exists*/ 36 this->DeleteInput(in_input->InstanceEnum()); 37 38 /*Now add new input to the dataset*/ 34 int enum_name = in_input->InstanceEnum(); 35 36 /*Go through current inputs*/ 37 int size = this->Size(); 38 for(int i=0;i<size;i++){ 39 Input* input=xDynamicCast<Input*>(this->objects[i]); 40 41 /*If it's already there, remove it and replace it with in_input*/ 42 if(input->InstanceEnum()==enum_name){ 43 delete input; 44 this->objects[i] = in_input; 45 return 1; 46 } 47 } 48 49 /*It is new, add input to the dataset*/ 39 50 this->AddObject(in_input); 40 51 … … 47 58 this->DeleteInput(newenumtype); 48 59 49 /*Now get old input and change its enum (do not error out if not found)*/ 50 Input* input=this->GetInput(oldenumtype); 51 if(input) input->ChangeEnum(newenumtype); 60 /*Go through current inputs*/ 61 int size = this->Size(); 62 for(int i=0;i<size;i++){ 63 Input* input=xDynamicCast<Input*>(this->objects[i]); 64 65 /*If it's already there, remove it and replace it with in_input*/ 66 if(input->InstanceEnum()==oldenumtype){ 67 input->ChangeEnum(newenumtype); 68 return; 69 } 70 } 52 71 }/*}}}*/ 53 72 void Inputs::Configure(Parameters* parameters){/*{{{*/
Note:
See TracChangeset
for help on using the changeset viewer.