Changeset 1586 for code/branches/core3/src/util/String.h
- Timestamp:
- Jun 10, 2008, 3:35:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/util/String.h
r1505 r1586 129 129 std::string input = "3.14"; 130 130 float f; 131 bool success = string2Number(&f, input);131 bool success = FromString(&f, input); 132 132 */ 133 133 template <typename T> … … 151 151 std::string input = "3.14"; 152 152 float f; 153 bool success = string2Number(&f, input, 0.000000);153 bool success = FromString(&f, input, 0.000000); 154 154 */ 155 155 template <typename T>
Note: See TracChangeset
for help on using the changeset viewer.