Hi there,
I downloaded the thread pool library and add the followings to the include path of VC++ project (MS2008 on Windows XP):
C:\threadpool-0_2_5-src\threadpool
C:\boost_1_50_0
I got two compiling errors:
1>c:\threadpool-0_2_5-src\threadpool\boost\threadpool\task_adaptors.hpp(138) : error C2065: 'TIME_UTC' : undeclared identifier
1>c:\threadpool-0_2_5-src\threadpool\boost\threadpool\task_adaptors.hpp(149) : error C2065: 'TIME_UTC' : undeclared identifier
in just including the pool's head file in my project:
#include <iostream>
#include <threadpool.hpp>
using namespace boost::threadpool;
int main()
{
return 0;
}
Did I miss sth.?
Thanks,
Robert