Changeset 1225 in Sophya for trunk/SophyaLib/BaseTools/dvlist.cc
- Timestamp:
- Oct 11, 2000, 7:27:23 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/dvlist.cc
r1157 r1225 199 199 ValList::const_iterator it = mvlist.find(key); 200 200 if (it == mvlist.end()) return(def); 201 return( (*it).second.elval.iv);201 return( (int_8)((*it).second.elval) ); 202 202 } 203 203 … … 209 209 ValList::const_iterator it = mvlist.find(key); 210 210 if (it == mvlist.end()) return(def); 211 return( (*it).second.elval.dv);211 return( (r_8)((*it).second.elval) ); 212 212 } 213 213 … … 219 219 ValList::const_iterator it = mvlist.find(key); 220 220 if (it == mvlist.end()) return(def); 221 return( (*it).second.elval.dv);221 return( (complex<r_8>)((*it).second.elval) ); 222 222 } 223 223 … … 229 229 ValList::const_iterator it = mvlist.find(key); 230 230 if (it == mvlist.end()) return(def); 231 return( *((*it).second.elval.strv));231 return( (string)((*it).second.elval) ); 232 232 } 233 233
Note:
See TracChangeset
for help on using the changeset viewer.