aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Vector.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/HyperNeat/Utils/Vector.hpp')
-rw-r--r--include/HyperNeat/Utils/Vector.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/Vector.hpp b/include/HyperNeat/Utils/Vector.hpp
new file mode 100644
index 0000000..f7352e4
--- /dev/null
+++ b/include/HyperNeat/Utils/Vector.hpp
@@ -0,0 +1,12 @@
+#ifndef __HYPERNEAT_VECTOR_HPP__
+#define __HYPERNEAT_VECTOR_HPP__
+
+#include <vector>
+
+namespace hyperneat
+{
+ template <class V>
+ using Vector = std::vector<V>;
+}
+
+#endif