Changeset 3230 for code/branches/netp6/src/core
- Timestamp:
- Jun 23, 2009, 9:45:35 PM (15 years ago)
- Location:
- code/branches/netp6/src/core
- Files:
-
- 2 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
Note: See TracChangeset
for help on using the changeset viewer.