qtrocket/utils/ThreadPool.h
2023-04-07 17:08:44 -06:00

18 lines
211 B
C++

#ifndef THREADPOOL_H
#define THREADPOOL_H
#include <atomic>
/**
* @brief A basic ThreadPool class
*/
class ThreadPool
{
public:
ThreadPool();
private:
std::atomic_bool done;
};
#endif // THREADPOOL_H