Changeset 3231 for code/branches/netp6/src/core/Thread.h
- Timestamp:
- Jun 23, 2009, 9:59:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp6/src/core/Thread.h
r3230 r3231 30 30 #define _Thread_H__ 31 31 32 33 32 #include "CorePrereqs.h" 34 33 35 34 namespace orxonox 36 35 { 37 38 class Thread 36 class _CoreExport Thread 39 37 { 40 38 public: 41 39 Thread(); 42 40 virtual ~Thread(); 43 44 inline bool isWorking(){ return this->isWorking_; }41 42 inline bool isWorking() { return this->isWorking_; } 45 43 void waitUntilFinished(); 46 44 bool evaluateFunctor( Functor* functor ); 47 45 48 46 private: 49 47 void threadLoop(); … … 55 53 boost::mutex* communicationMutex_; 56 54 }; 57 58 }59 55 56 } 60 57 61 #endif 58 #endif /* _Thread_H__ */
Note: See TracChangeset
for help on using the changeset viewer.