24 lines
368 B
C++
24 lines
368 B
C++
/*
|
|
* Created by Brett on 22/04/23.
|
|
* Licensed under GNU General Public License V3.0
|
|
* See LICENSE file for license detail
|
|
*/
|
|
|
|
#ifndef FINALPROJECT_THREADPOOL_H
|
|
#define FINALPROJECT_THREADPOOL_H
|
|
|
|
#include <thread>
|
|
#include <mutex>
|
|
|
|
namespace blt {
|
|
|
|
class thread_pool {
|
|
private:
|
|
|
|
public:
|
|
};
|
|
|
|
}
|
|
|
|
#endif //FINALPROJECT_THREADPOOL_H
|