Initial import

This commit is contained in:
Matteo Settenvini 2019-07-27 18:28:47 +02:00
commit 0a5348b401
31 changed files with 1907 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include <thread>
class A
{
public:
A ();
A (A&&) = default;
~A ();
A& operator= (A&&) = default;
private:
std::thread _t;
};

View file

@ -0,0 +1,16 @@
#pragma once
#include <cmake-exercise/a.hh>
#include <cmake-exercise/config.hh>
#include <vector>
class B
{
public:
DSO_EXPORT B ();
private:
std::vector<A> _a;
};

View file

@ -0,0 +1,4 @@
#pragma once
template <typename T>
void unused_function (); // nothing to see here