Changeset 1634 for code/branches/gcc43/src/asylum/util
- Timestamp:
- Jun 29, 2008, 7:36:33 PM (17 years ago)
- Location:
- code/branches/gcc43/src/asylum/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gcc43/src/asylum/util/String2Number.h
r1505 r1634 66 66 * should be one of std::hex, std::dec or std::oct (dec is default value) 67 67 */ 68 inlineString2Number(T& t, const std::string& s, std::ios_base& (*f)(std::ios_base&) = std::dec, int haltOnError=1)68 String2Number(T& t, const std::string& s, std::ios_base& (*f)(std::ios_base&) = std::dec, int haltOnError=1) 69 69 { 70 70 std::istringstream iss(s); -
code/branches/gcc43/src/asylum/util/Tokenizer.h
r1505 r1634 44 44 */ 45 45 46 inlinestd::vector<std::string> tokenize(const std::string& str, const std::string& delimiters = ",")46 std::vector<std::string> tokenize(const std::string& str, const std::string& delimiters = ",") 47 47 { 48 48 std::vector<std::string> tokens;
Note: See TracChangeset
for help on using the changeset viewer.