aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Thread.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/HyperNeat/Utils/Thread.hpp')
-rw-r--r--include/HyperNeat/Utils/Thread.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/Thread.hpp b/include/HyperNeat/Utils/Thread.hpp
new file mode 100644
index 0000000..4b861e3
--- /dev/null
+++ b/include/HyperNeat/Utils/Thread.hpp
@@ -0,0 +1,11 @@
+#ifndef __HYPERNEAT_THREAD_HPP__
+#define __HYPERNEAT_THREAD_HPP__
+
+#include <thread>
+
+namespace hyperneat
+{
+ using Thread = std::thread;
+}
+
+#endif