first commit, base server
This commit is contained in:
15
thread_selector.h
Normal file
15
thread_selector.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user