Changeset 7203 in orxonox.OLD for branches/std/src/lib/util/helper_functions.h
- Timestamp:
- Mar 9, 2006, 5:28:10 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/std/src/lib/util/helper_functions.h
r5141 r7203 6 6 #ifndef _HELPER_FUNCTIONS_H 7 7 #define _HELPER_FUNCTIONS_H 8 9 #include <string> 8 10 9 11 // FORWARD DECLARATION … … 15 17 int isInt(const char* INT, int defaultValue); 16 18 float isFloat(const char* FLOAT, float defaultValue); 17 const char* isString(const char* STRING, const char* defaultValue); 19 const char* isCString(const char* STRING, const char* defaultValue); 20 std::string isString(const char* STRING, const std::string& defaultValue); 21 22 23 int nocase_cmp(const std::string& s1, const std::string& s2); 24 18 25 19 26 #endif /* _HELPER_FUNCTIONS_H */
Note: See TracChangeset
for help on using the changeset viewer.