Zserio C++ runtime library  1.0.0
Built for Zserio 2.13.0
String.h
Go to the documentation of this file.
1 #ifndef ZSERIO_STRING_H_INC
2 #define ZSERIO_STRING_H_INC
3 
4 #include <string>
5 #include "zserio/RebindAlloc.h"
6 
7 namespace zserio
8 {
9 
15 template <typename ALLOC = std::allocator<char>>
16 using string = std::basic_string<char, std::char_traits<char>, RebindAlloc<ALLOC, char>>;
17 
18 } // namespace zserio
19 
20 #endif // ZSERIO_STRING_H_INC
typename std::allocator_traits< ALLOC >::template rebind_alloc< T > RebindAlloc
Definition: RebindAlloc.h:10