Zserio C++ runtime library  1.0.2
Built for Zserio 2.14.1
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 
6 #include "zserio/RebindAlloc.h"
7 
8 namespace zserio
9 {
10 
16 template <typename ALLOC = std::allocator<char>>
17 using string = std::basic_string<char, std::char_traits<char>, RebindAlloc<ALLOC, char>>;
18 
19 } // namespace zserio
20 
21 #endif // ZSERIO_STRING_H_INC
typename std::allocator_traits< ALLOC >::template rebind_alloc< T > RebindAlloc
Definition: RebindAlloc.h:10