#ifndef THREAD_SELECTOR_H #define THREAD_SELECTOR_H #include #include class thread_selector { public: thread_selector(); private: std::queue t_pos; std::thread* list; }; #endif // THREAD_SELECTOR_H