1 #ifndef BLUB_CORE_HASHMAP_HPP
2 #define BLUB_CORE_HASHMAP_HPP
4 #include <blub/core/globals.hpp>
6 #include <unordered_map>
8 #include <boost/functional/hash.hpp>
21 class hashMap :
public std::unordered_map<S, T, H, P, A>
24 typedef std::unordered_map<S, T, H, P, A> t_base;
30 void insert(
const typename t_base::key_type& key,
const typename t_base::mapped_type& value)
32 t_base::operator [](key) = value;
40 #endif // BLUB_CORE_HPP
Definition: hashMap.hpp:21
Definition: deadlineTimer.hpp:10