COSC-3P98-Final-Project/include/util/threadpool.h

24 lines
368 B
C
Raw Normal View History

2023-04-22 20:35:46 -04:00
/*
* 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