voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
hashList.hpp
1 #ifndef BLUB_HASHLIST_HPP
2 #define BLUB_HASHLIST_HPP
3 
4 #include <blub/core/globals.hpp>
5 
6 #include <unordered_set>
7 #include <utility>
8 #include <boost/functional/hash.hpp>
9 
10 
11 namespace blub
12 {
13 
14 
15 template <class Key,
16  class Hash,
17  class KeyEqual,
18  class Allocator>
19 class hashList : public std::unordered_set<Key, Hash, KeyEqual, Allocator>
20 {
21 
22 };
23 
24 
25 }
26 
27 
28 #endif // BLUB_HASHLIST_HPP
Definition: hashList.hpp:19
Definition: deadlineTimer.hpp:10