Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 29, 2007, 12:09:24 AM (16 years ago)
Author:
landauf
Message:

some changes (yes! CHANGES! unbelievable! they exist! well, ok, not in politics)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/core/ConfigValueContainer.h

    r716 r717  
    7474            enum VariableType
    7575            {
    76                 Int,
    77                 uInt,
    78                 Char,
    79                 uChar,
    80                 Float,
    81                 Double,
    82                 LongDouble,
    83                 Bool,
    84                 ConstChar,
    85                 _String,
    86                 _Vector2,
    87                 _Vector3,
    88                 _ColourValue
     76                VT_Int,
     77                VT_uInt,
     78                VT_Char,
     79                VT_uChar,
     80                VT_Float,
     81                VT_Double,
     82                VT_LongDouble,
     83                VT_Bool,
     84                VT_ConstChar,
     85                VT_String,
     86                VT_Vector2,
     87                VT_Vector3,
     88                VT_ColourValue
    8989            };
    9090
     
    180180
    181181            std::string         value_string_;                  //!< The value, if the variable is of the type string
    182             Vector2       value_vector2_;                 //!< The value, if the variable is of the type Vector2
    183             Vector3       value_vector3_;                 //!< The value, if the variable is of the type Vector3
    184             ColourValue   value_colourvalue_;             //!< The value, if the variable is of the type ColourValue
     182            Vector2             value_vector2_;                 //!< The value, if the variable is of the type Vector2
     183            Vector3             value_vector3_;                 //!< The value, if the variable is of the type Vector3
     184            ColourValue         value_colourvalue_;             //!< The value, if the variable is of the type ColourValue
    185185
    186186            std::list<std::string>::iterator configFileLine_;   //!< An iterator, pointing to the entry of the variable in the config-file
Note: See TracChangeset for help on using the changeset viewer.