OSVR-Core
hash_map.h
Go to the documentation of this file.
1 
14 #pragma once
15 
16 #include <hash_map>
17 //using stdext::hash_map;
18 
19 template<typename Key>
20 class hash;
21 template<typename Key>
22 class equal_to;
23 
24 template<typename Key, typename Val, typename HashFcn, typename EqualKey, typename Alloc>
25 class hash_map;
26 
27 template<typename Key, typename Val>
28 class hash_map<Key, Val, hash<Key>, equal_to<Val> > : public stdext::hash_map<Key, Val> {};
Definition: hash_map.h:25
Definition: hash_map.h:20
Definition: hash_map.h:22