Changeset 20500 for issm/trunk/src/c/classes/Inputs/ControlInput.cpp
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk ¶
- Property svn:ignore
-
TabularUnified
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src ¶
- Property svn:mergeinfo changed
-
TabularUnified issm/trunk/src/c/classes/Inputs/ControlInput.cpp ¶
r19105 r20500 71 71 } 72 72 /*}}}*/ 73 int 74 /*}}}*/ 75 int ControlInput::ObjectEnum(void){/*{{{*/73 int ControlInput::Id(void){ return -1; }/*{{{*/ 74 /*}}}*/ 75 int ControlInput::ObjectEnum(void){/*{{{*/ 76 76 77 77 return ControlInputEnum; … … 96 96 } 97 97 /*}}}*/ 98 void ControlInput::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 99 100 MARSHALLING_ENUM(ControlInputEnum); 101 102 MARSHALLING(enum_type); 103 MARSHALLING(control_id); 104 105 if (marshall_direction == MARSHALLING_BACKWARD){ 106 switch(enum_type){ 107 case TriaInputEnum: 108 values =new TriaInput(); 109 savedvalues=new TriaInput(); 110 minvalues =new TriaInput(); 111 maxvalues =new TriaInput(); 112 gradient =new TriaInput(); 113 break; 114 case PentaInputEnum: 115 values =new PentaInput(); 116 savedvalues=new PentaInput(); 117 minvalues =new PentaInput(); 118 maxvalues =new PentaInput(); 119 gradient =new PentaInput(); 120 break; 121 default: 122 _error_("Input of Enum " << EnumToStringx(enum_type) << " not supported yet by ControlInput"); 123 } 124 } 125 if(values) this->values->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 126 if(savedvalues) this->savedvalues->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 127 if(minvalues) this->minvalues->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 128 if(maxvalues) this->maxvalues->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 129 if(gradient) this->gradient->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 130 } 131 /*}}}*/ 98 132 99 133 /*ControlInput management*/
Note:
See TracChangeset
for help on using the changeset viewer.