Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

Location:
code/branches/gcc43/src/asylum
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/asylum/loader/LevelLoader.h

    r1505 r1634  
    3030
    3131    // Getters
    32     inline std::string name() {return name_; };
    33     inline std::string description() {return description_; };
    34     inline std::string image() {return image_; };
     32    std::string name() {return name_; };
     33    std::string description() {return description_; };
     34    std::string image() {return image_; };
    3535  private:
    3636    //! Level information
  • code/branches/gcc43/src/asylum/util/String2Number.h

    r1505 r1634  
    6666   * should be one of std::hex, std::dec or std::oct (dec is default value)
    6767   */
    68   inline String2Number(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)
    6969  {
    7070    std::istringstream iss(s);
  • code/branches/gcc43/src/asylum/util/Tokenizer.h

    r1505 r1634  
    4444 */
    4545
    46 inline std::vector<std::string> tokenize(const std::string& str, const std::string& delimiters = ",")
     46std::vector<std::string> tokenize(const std::string& str, const std::string& delimiters = ",")
    4747{
    4848  std::vector<std::string> tokens;
Note: See TracChangeset for help on using the changeset viewer.