DDD 1.9.0.20250409152518
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
9namespace d3 { namespace util
10{
11
12template
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 >
19struct 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 Wed Apr 9 2025 15:27:42 for DDD by doxygen 1.9.8