#pragma once #include class Worker { std::thread t; public: Worker(std::thread t); ~Worker(); };