DDD  1.9.0.20240826145154
map.hh
Go to the documentation of this file.
1 #ifndef _MAP_HH_
2 #define _MAP_HH_
3 
4 #include <map>
5 #include <utility>
6 
8 
9 namespace d3 { namespace util
10 {
11 
12 template
13  <
14  typename Key
15  , typename Data
16  , typename Compare = std::less<Key>
17  , typename Allocator = typename conf::allocator< std::pair<const Key, Data> >::type
18  >
19 struct map
20 {
21  typedef typename std::map<Key,Data,Compare,Allocator> type;
22 };
23 
24 }} // namespace d3::util
25 
26 #endif /* _MAP_HH_ */
Definition: Hom.cpp:41
Definition: configuration.hh:38
Definition: map.hh:20
std::map< Key, Data, Compare, Allocator > type
Definition: map.hh:21

Please comment this page and report errors about it on the RefDocComments page.
Generated on Mon Aug 26 2024 14:54:00 for DDD by doxygen 1.9.1