Ignore:
Timestamp:
Feb 2, 2011, 10:14:57 AM (13 years ago)
Author:
Torben Dannhauer
Message:

Added util functions to convert string to bool, int or double.
Modified all files to use this functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • osgVisual/trunk/include/util/visual_util.h

    r219 r220  
    276276         * @return : double representation of the string.
    277277         */
    278         static int strToDouble(std::string s);
     278        static double strToDouble(std::string s);
    279279
    280280        /**
     
    284284         * @return : Integer representation of the string.
    285285         */
    286         static double strToInt(std::string s);
     286        static int strToInt(std::string s);
    287287
    288288        /**
Note: See TracChangeset for help on using the changeset viewer.