Changeset 10575 in orxonox.OLD for branches/cleanup/src
- Timestamp:
- Feb 7, 2007, 9:22:45 PM (18 years ago)
- Location:
- branches/cleanup/src
- Files:
-
- 2 added
- 4 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cleanup/src/Makefile.am
r10571 r10575 46 46 $(StoryEntities_HEADERS_) \ 47 47 orxonox.h \ 48 ability.h \49 48 defs/stdlibincl.h \ 50 49 defs/sdlincl.h \ -
branches/cleanup/src/lib/sound/ogg_player.h
r9869 r10575 13 13 #include <ogg/ogg.h> 14 14 #include <vorbis/vorbisfile.h> 15 #include "util/thread ing.h"15 #include "util/threads/threading.h" 16 16 17 17 struct File; -
branches/cleanup/src/lib/sound/sound_engine.h
r9869 r10575 15 15 #include <list> 16 16 #include <stack> 17 #include "thread ing.h"17 #include "threads/threading.h" 18 18 19 19 #define SOUND_DOPPLER_FACTOR 0.001 //!< A factor for the audible doppler effect -
branches/cleanup/src/lib/util/Makefile.am
r9869 r10575 29 29 filesys/net_link.cc \ 30 30 \ 31 thread ing.cc \31 threads/thread.cc \ 32 32 timer.cc 33 33 … … 63 63 filesys/net_link.h \ 64 64 \ 65 threading.h \ 65 threads/threading.h \ 66 threads/thread.h \ 67 threads/mutex.h \ 68 threads/mutex_locker.h \ 69 \ 66 70 timer.h \ 67 71 \ -
branches/cleanup/src/lib/util/debug_buffer.cc
r9869 r10575 20 20 #include "debug.h" 21 21 #include "compiler.h" 22 #include "thread ing.h"22 #include "threads/threading.h" 23 23 24 24 /** -
branches/cleanup/src/lib/util/filesys/net_link.h
r9406 r10575 19 19 #include <list> 20 20 21 #include "thread ing.h"21 #include "threads/threading.h" 22 22 23 23 //! NetLink is a File and Link executer for Internet Links
Note: See TracChangeset
for help on using the changeset viewer.