Worker.h 110 B

12345678910
  1. #pragma once
  2. #include <thread>
  3. class Worker
  4. {
  5. std::thread t;
  6. public:
  7. Worker(std::thread t);
  8. ~Worker();
  9. };