16 lines
228 B
C++
16 lines
228 B
C++
#ifndef THREAD_SELECTOR_H
|
|
#define THREAD_SELECTOR_H
|
|
#include <queue>
|
|
#include <thread>
|
|
|
|
class thread_selector
|
|
{
|
|
public:
|
|
thread_selector();
|
|
private:
|
|
std::queue<int> t_pos;
|
|
std::thread* list;
|
|
};
|
|
|
|
#endif // THREAD_SELECTOR_H
|