Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 22, 2007, 2:13:18 AM (18 years ago)
Author:
landauf
Message:
  • expanded the String2Number.h file
  • changed the SetConfigValue macro
  • changed the S2N and N2S conversion in the ConfigValueContainer
  • added unsigned int, char, unsigned char, float (additionally to double) and const char* (additionally to std::string) to the ConfigValueContainer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/objects/test3.h

    r496 r667  
    2424        private:
    2525            int                 value_int_;
     26            unsigned int        value_uint_;
     27            char                value_char_;
     28            unsigned char       value_uchar_;
     29            float               value_float_;
    2630            double              value_double_;
    2731            bool                value_bool_;
    2832            std::string         value_string_;
     33            const char*         value_constchar_;
    2934            Vector2             value_vector2_;
    3035            Vector3             value_vector3_;
Note: See TracChangeset for help on using the changeset viewer.