Zserio C++17 runtime library  0.5.0
Built for Zserio 2.17.0
Set.h
Go to the documentation of this file.
1 #ifndef ZSERIO_PPMR_SET_H_INC
2 #define ZSERIO_PPMR_SET_H_INC
3 
4 #include <set>
5 
7 
8 namespace zserio
9 {
10 namespace ppmr
11 {
12 
16 template <typename T, typename COMPARE = std::less<T>>
17 using Set = std::set<T, COMPARE, PropagatingPolymorphicAllocator<T>>;
18 
19 } // namespace ppmr
20 } // namespace zserio
21 
22 #endif // ZSERIO_PPMR_SET_H_INC
std::set< T, COMPARE, PropagatingPolymorphicAllocator< T > > Set
Definition: Set.h:17