Changeset 7218 in orxonox.OLD for branches/std/src/lib/util
- Timestamp:
- Mar 12, 2006, 3:00:04 PM (19 years ago)
- Location:
- branches/std/src/lib/util
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/std/src/lib/util/executor/functor_list.h
r7216 r7218 74 74 //#define l_VECTOR_DEFAULT Vector(0,0,0) //!< Default value for a VECTOR 75 75 76 #define l_CSTRING_TYPE const char* //!< The type of a CSTRING77 #define l_CSTRING_FUNC isCString //!< The function to parse a CSTRING78 #define l_CSTRING_NAME "cstring" //!< The name of a CSTRING79 #define l_CSTRING_PARAM MT_STRING //!< the type of the parameter CSTRING80 #define l_CSTRING_DEFAULT "" //!< a default Value for an CSTRING81 82 76 #define l_STRING_TYPE const std::string& //!< The type of a STRING 83 77 #define l_STRING_FUNC isString //!< The function to parse a STRING 84 78 #define l_STRING_NAME "string" //!< The name of a STRING 85 #define l_STRING_PARAM MT_ CSTRING //!< the type of the parameter STRING79 #define l_STRING_PARAM MT_STRING //!< the type of the parameter STRING 86 80 #define l_STRING_DEFAULT "" //!< a default Value for an STRING 87 81 -
branches/std/src/lib/util/loading/resource_manager.cc
r7210 r7218 849 849 { 850 850 std::string homeDir; 851 std::string newName = name.substr(1 , name.size()-1);851 std::string newName = name.substr(1); 852 852 #ifdef __WIN32__ 853 853 homeDir = getenv("USERPROFILE"); -
branches/std/src/lib/util/multi_type.cc
r7214 r7218 55 55 break; 56 56 case MT_STRING: 57 case MT_CSTRING:58 57 this->storedString = ""; 59 58 break; -
branches/std/src/lib/util/multi_type.h
r7214 r7218 24 24 MT_EXT1 = 32, //!< An external Type. 25 25 MT_EXT2 = 64, //!< An external Type. 26 27 MT_CSTRING = 128, //!< An entire String.28 26 } MT_Type; 29 27
Note: See TracChangeset
for help on using the changeset viewer.