aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Map.hpp
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 19:04:34 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 19:16:14 +0100
commite6ab4a8ed100d5d5b7611c74cf3ccd556f1f1d71 (patch)
tree129cf13c2f9b3eae54402300db4570815789a02a /include/HyperNeat/Utils/Map.hpp
Initial commitHEADmaster
Diffstat (limited to 'include/HyperNeat/Utils/Map.hpp')
-rw-r--r--include/HyperNeat/Utils/Map.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/Map.hpp b/include/HyperNeat/Utils/Map.hpp
new file mode 100644
index 0000000..c735ab3
--- /dev/null
+++ b/include/HyperNeat/Utils/Map.hpp
@@ -0,0 +1,12 @@
+#ifndef __HYPERNEAT_MAP_HPP__
+#define __HYPERNEAT_MAP_HPP__
+
+#include <map>
+
+namespace hyperneat
+{
+ template <class K, class V>
+ using Map = std::map<K, V>;
+}
+
+#endif