DDD 1.9.0.20250409152518
set.hh
Go to the documentation of this file.
1#ifndef _SET_HH_
2#define _SET_HH_
3
4#include <set>
5
7
8namespace d3 {
9
10template
11 <
12 typename Key
13 , typename Compare = std::less<Key>
14 , typename Allocator = typename conf::allocator<Key>::type
15 >
16struct set
17{
18 typedef typename std::set<Key,Compare,Allocator> type;
19};
20
21
22template
23 <
24 typename Key
25 , typename Compare = std::less<Key>
26 , typename Allocator = typename conf::allocator<Key>::type
27 >
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 Wed Apr 9 2025 15:27:42 for DDD by doxygen 1.9.8