Home
last modified time | relevance | path

Searched refs:string_wrapper (Results 1 – 3 of 3) sorted by relevance

/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp19 struct string_wrapper struct
23 string_wrapper() = default;
24 string_wrapper(const string_wrapper&) = default;
25 string_wrapper& operator=(const string_wrapper&) = default;
26 string_wrapper(string_wrapper&&) = default;
27 string_wrapper& operator=(string_wrapper&&) = default;
28 ~string_wrapper() = default;
30 string_wrapper(const std::string& str_in) : str(str_in) {} in string_wrapper() function
31 string_wrapper(std::string&& str_in) : str(std::move(str_in)) {} in string_wrapper() function
35 return const_cast<const string_wrapper*>(this)->str; in operator const std::string&()
[all …]
H A Dappend.hpp177 struct append_single<details::string_wrapper>
H A Dread.hpp118 std::is_same_v<S, details::string_wrapper> ||