DDD  1.9.0.20240425101308
set.hh
Go to the documentation of this file.
1 #ifndef _SET_HH_
2 #define _SET_HH_
3 
4 #include <set>
5 
7 
8 namespace d3 {
9 
10 template
11  <
12  typename Key
13  , typename Compare = std::less<Key>
14  , typename Allocator = typename conf::allocator<Key>::type
15  >
16 struct set
17 {
18  typedef typename std::set<Key,Compare,Allocator> type;
19 };
20 
21 
22 template
23  <
24  typename Key
25  , typename Compare = std::less<Key>
26  , typename Allocator = typename conf::allocator<Key>::type
27  >
28 struct multiset
29 {
30  typedef typename std::multiset<Key,Compare,Allocator> type;
31 };
32 
33 
34 
35 
36 } // namespace d3
37 
38 #endif /* _SET_HH_ */
Definition: Hom.cpp:41
std::allocator< T > type
Definition: configuration.hh:39
Definition: set.hh:29
std::multiset< Key, Compare, Allocator > type
Definition: set.hh:30
Definition: set.hh:17
std::set< Key, Compare, Allocator > type
Definition: set.hh:18

Please comment this page and report errors about it on the RefDocComments page.
Generated on Thu Apr 25 2024 10:15:16 for DDD by doxygen 1.9.1