introducing-cmake/exercises/include/cmake-exercise/a.hh

17 lines
163 B
C++
Raw Permalink Normal View History

2019-07-27 18:28:47 +02:00
#pragma once
#include <thread>
class A
{
public:
A ();
A (A&&) = default;
~A ();
A& operator= (A&&) = default;
private:
std::thread _t;
};