Changeset 3230
- Timestamp:
- Jun 23, 2009, 9:45:35 PM (15 years ago)
- Location:
- code/branches/netp6/src
- Files:
-
- 4 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp6/src/core/CMakeLists.txt
r3196 r3230 61 61 TclBind.cc 62 62 TclThreadManager.cc 63 64 # multithreading 65 Thread.cc 66 ThreadPool.cc 63 67 ) 64 68 ADD_SUBDIRECTORY(input) -
code/branches/netp6/src/core/CorePrereqs.h
r3196 r3230 186 186 class SimpleCommand; 187 187 class SimpleInputState; 188 189 // multithreading 190 class Thread; 191 class ThreadGroup; 188 192 } 189 193 … … 196 200 197 201 // Boost 198 namespace boost { namespace filesystem 199 { 200 struct path_traits; 201 template <class String, class Traits> class basic_path; 202 typedef basic_path<std::string, path_traits> path; 203 } } 202 namespace boost { 203 namespace filesystem 204 { 205 struct path_traits; 206 template <class String, class Traits> class basic_path; 207 typedef basic_path<std::string, path_traits> path; 208 } 209 class thread; 210 class mutex; 211 } 204 212 205 213 // TinyXML and TinyXML++ -
code/branches/netp6/src/core/Thread.h
r3226 r3230 31 31 32 32 33 #include "UtilPrereqs.h" 34 #include "core/CorePrereqs.h" 33 #include "CorePrereqs.h" 35 34 36 35 namespace orxonox -
code/branches/netp6/src/core/ThreadPool.h
r3226 r3230 32 32 #include <vector> 33 33 34 #include "UtilPrereqs.h"35 34 #include "Thread.h" 36 35 -
code/branches/netp6/src/util/CMakeLists.txt
r3226 r3230 31 31 String.cc 32 32 SubString.cc 33 Thread.cc34 ThreadPool.cc35 33 ) 36 34 -
code/branches/netp6/src/util/UtilPrereqs.h
r3226 r3230 60 60 // Forward declarations 61 61 //----------------------------------------------------------------------- 62 namespace boost63 {64 class thread;65 class mutex;66 }67 62 68 63 namespace Ogre … … 101 96 class SignalHandler; 102 97 class SubString; 103 class Thread;104 class ThreadPool;105 98 } 106 99
Note: See TracChangeset
for help on using the changeset viewer.