Changeset 1634 for code/branches/gcc43/src/asylum
- Timestamp:
- Jun 29, 2008, 7:36:33 PM (16 years ago)
- Location:
- code/branches/gcc43/src/asylum
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gcc43/src/asylum/loader/LevelLoader.h
r1505 r1634 30 30 31 31 // Getters 32 inlinestd::string name() {return name_; };33 inlinestd::string description() {return description_; };34 inlinestd::string image() {return image_; };32 std::string name() {return name_; }; 33 std::string description() {return description_; }; 34 std::string image() {return image_; }; 35 35 private: 36 36 //! Level information -
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.