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_VECTOR_H_INC
2 #define ZSERIO_VECTOR_H_INC
3 
4 #include <vector>
5 
6 namespace zserio
7 {
8 
12 template <typename T, typename ALLOC = std::allocator<T>>
13 using Vector = std::vector<T, ALLOC>;
14 
15 } // namespace zserio
16 
17 #endif // ZSERIO_VECTOR_H_INC
std::vector< T, ALLOC > Vector
Definition: Vector.h:13