Home
last modified time | relevance | path

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

/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp19 struct string_wrapper struct
21 std::string str;
30 string_wrapper(const std::string& str_in) : str(str_in) {} in string_wrapper() argument
31 string_wrapper(std::string&& str_in) : str(std::move(str_in)) {} in string_wrapper() function
33 operator const std::string&() const volatile& in operator const std::string&()
37 operator std::string&&() && in operator std::string&&()
42 bool operator==(const string_wrapper& r) const in operator ==()
50 bool operator<(const string_wrapper& r) const in operator <()
54 bool operator==(const std::string& r) const in operator ==()
58 bool operator!=(const std::string& r) const in operator !=()
[all …]