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/ThreadPool.h

    r3230 r3231  
    3030#define _ThreadPool_H__
    3131
     32#include "CorePrereqs.h"
     33
    3234#include <vector>
    33 
    3435#include "Thread.h"
    3536
    3637 namespace orxonox
    3738{
    38    
    39     class ThreadPool
     39    class _CoreExport ThreadPool
    4040    {
    4141    public:
     
    5151       
    5252    private:
    53         std::vector<Thread>     threadPool_;
     53        std::vector<Thread> threadPool_;
    5454       
    5555    };
    56    
    5756}
    5857
    59 
    60 #endif
     58#endif /* _ThreadPool_H__ */
Note: See TracChangeset for help on using the changeset viewer.