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