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