ServidorTFG/thread_selector.h

16 lines
228 B
C
Raw Normal View History

2020-05-08 12:43:46 +02:00
#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