Changeset 1846 for code/branches/orxonox_tutorial/src/util
- Timestamp:
- Sep 28, 2008, 2:27:03 PM (16 years ago)
- Location:
- code/branches/orxonox_tutorial
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/orxonox_tutorial
- Property svn:mergeinfo changed
/code/trunk (added) merged: 1832,1836-1844
- Property svn:mergeinfo changed
-
code/branches/orxonox_tutorial/src/util/CMakeLists.txt
r1821 r1846 20 20 TARGET_LINK_LIBRARIES(util 21 21 ${OGRE_LIBRARIES} 22 ${Lua_LIBRARIES}23 22 ) -
code/branches/orxonox_tutorial/src/util/Convert.h
r1791 r1846 39 39 #include <string> 40 40 #include <sstream> 41 #include <typeinfo> 41 42 42 43 #include "Math.h" -
code/branches/orxonox_tutorial/src/util/Exception.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/orxonox_tutorial/src/util/Exception.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/orxonox_tutorial/src/util/Math.h
r1823 r1846 220 220 inline _UtilExport float rnd() 221 221 { 222 return ((float)rand() / (RAND_MAX + 1));222 return rand() / (RAND_MAX + 1.0); 223 223 } 224 224 -
code/branches/orxonox_tutorial/src/util/Sleep.h
r1755 r1846 39 39 40 40 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 41 42 #ifndef WIN32_LEAN_AND_MEAN 43 # define WIN32_LEAN_AND_MEAN 44 #endif 45 #include <windows.h> 41 #include <winbase.h> 46 42 47 43 inline void usleep(DWORD dwMicroseconds)
Note: See TracChangeset
for help on using the changeset viewer.