10 #ifndef EIGEN_CXX11_THREADPOOL_THREAD_POOL_INTERFACE_H
11 #define EIGEN_CXX11_THREADPOOL_THREAD_POOL_INTERFACE_H
17 class ThreadPoolInterface {
19 virtual void Schedule(std::function<
void()> fn) = 0;
22 virtual int NumThreads()
const = 0;
26 virtual int CurrentThreadId()
const = 0;
28 virtual ~ThreadPoolInterface() {}
Namespace containing all symbols from the Eigen library.