- Timestamp:
- 08/09/10 15:36:56 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/ExternalResults/IntExternalResult.cpp
r4546 r5103 53 53 printf("IntExternalResult:\n"); 54 54 printf(" id: %i\n",this->id); 55 printf(" enum: %i (%s)\n",this->enum_type,Enum AsString(this->enum_type));55 printf(" enum: %i (%s)\n",this->enum_type,EnumToString(this->enum_type)); 56 56 printf(" value: %i\n",this->value); 57 57 printf(" step: %i\n",this->step); … … 156 156 157 157 /*First write enum: */ 158 name=Enum AsString(this->enum_type);158 name=EnumToString(this->enum_type); 159 159 length=(strlen(name)+1)*sizeof(char); 160 160 fwrite(&length,sizeof(int),1,fid); … … 179 179 /*FUNCTION IntExternalResult::GetResultName{{{1*/ 180 180 char* IntExternalResult::GetResultName(void){ 181 return Enum AsString(this->enum_type);181 return EnumToString(this->enum_type); 182 182 } 183 183 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.