Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 12, 2009, 11:58:01 PM (15 years ago)
Author:
rgrieder
Message:

Merged most of the core4 revisions back to the trunk except for:

  • orxonox_cast
  • all the radical changes in the input library
Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/util/Convert.h

    r3234 r3280  
    4343
    4444#include "Debug.h"
    45 #include "String.h"
     45#include "StringUtils.h"
    4646#include "TemplateUtils.h"
    4747
     
    316316    }
    317317
    318     // convert to string Shortcut
    319     template <class FromType>
    320     FORCEINLINE std::string convertToString(FromType value)
    321     {
    322         return getConvertedValue<FromType, std::string>(value);
    323     }
    324 
    325     // convert from string Shortcut
    326     template <class ToType>
    327     FORCEINLINE ToType convertFromString(std::string str)
    328     {
    329         return getConvertedValue<std::string, ToType>(str);
    330     }
    331 
    332318    ////////////////////////////////
    333319    // Special string conversions //
Note: See TracChangeset for help on using the changeset viewer.