Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 10, 2008, 3:35:50 PM (16 years ago)
Author:
landauf
Message:

moved Debug.h, OutputHandler and OutputBuffer to util, to make COUT(x) available everywhere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/util/String.h

    r1505 r1586  
    129129            std::string input = "3.14";
    130130            float f;
    131             bool success = string2Number(&f, input);
     131            bool success = FromString(&f, input);
    132132        */
    133133        template <typename T>
     
    151151            std::string input = "3.14";
    152152            float f;
    153             bool success = string2Number(&f, input, 0.000000);
     153            bool success = FromString(&f, input, 0.000000);
    154154        */
    155155        template <typename T>
Note: See TracChangeset for help on using the changeset viewer.