Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 23, 2009, 9:59:04 PM (15 years ago)
Author:
rgrieder
Message:

Build fixes: Classes should export symbols with _CoreExport and functions with return values should return something.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/netp6/src/core/Thread.h

    r3230 r3231  
    3030#define _Thread_H__
    3131
    32 
    3332#include "CorePrereqs.h"
    3433
    3534 namespace orxonox
    3635{
    37    
    38     class Thread
     36    class _CoreExport Thread
    3937    {
    4038    public:
    4139        Thread();
    4240        virtual ~Thread();
    43        
    44         inline  bool isWorking(){ return this->isWorking_; }
     41
     42        inline bool isWorking() { return this->isWorking_; }
    4543        void waitUntilFinished();
    4644        bool evaluateFunctor( Functor* functor );
    47        
     45
    4846    private:
    4947        void            threadLoop();
     
    5553        boost::mutex*   communicationMutex_;
    5654    };
    57    
    58 }
    5955
     56 }
    6057
    61 #endif
     58#endif /* _Thread_H__ */
Note: See TracChangeset for help on using the changeset viewer.