PMDK C++ bindings  1.13.0-git23.gf49772ac
This is the C++ bindings documentation for PMDK's libpmemobj.
string.hpp
Go to the documentation of this file.
1 // SPDX-License-Identifier: BSD-3-Clause
2 /* Copyright 2019, Intel Corporation */
3 
9 #ifndef LIBPMEMOBJ_CPP_STRING_HPP
10 #define LIBPMEMOBJ_CPP_STRING_HPP
11 
13 
14 namespace pmem
15 {
16 
17 namespace obj
18 {
19 
20 using string = basic_string<char>;
21 using wstring = basic_string<wchar_t>;
22 using u16string = basic_string<char16_t>;
23 using u32string = basic_string<char32_t>;
24 
25 } /* namespace obj */
26 
27 } /* namespace pmem */
28 
29 #endif /* LIBPMEMOBJ_CPP_STRING_HPP */
String container with std::basic_string compatible interface.
Persistent memory namespace.
Definition: allocation_flag.hpp:15