Changeset 11479 for trunk/FACT++/src/fscctrl.cc
- Timestamp:
- 07/19/11 21:03:37 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fscctrl.cc
r11476 r11479 172 172 if (buffer.substr(0, 8)=="status: ") 173 173 { 174 status = atoi(buffer.c_str()+8);174 status = stoi(buffer.substr(8)); 175 175 continue; 176 176 } … … 178 178 if (buffer.substr(0, 8)=="time_s: ") 179 179 { 180 time = atof(buffer.c_str()+8);180 time = stof(buffer.substr(8)); 181 181 continue; 182 182 }
Note:
See TracChangeset
for help on using the changeset viewer.