Worker.cpp 124 B

1234567891011
  1. #include "pch.h"
  2. #include "Worker.h"
  3. Worker::Worker(std::thread t) : t(std::move(t))
  4. {
  5. }
  6. Worker::~Worker()
  7. {
  8. t.join();
  9. }