| 128 | } |
| 129 | |
| 130 | void message::user(const std::string &id) { |
| 131 | check(pn_message_set_user_id(pn_msg(), pn_bytes(id))); |
| 132 | } |
| 133 | |
| 134 | std::string message::user() const { |
| 135 | return str(pn_message_get_user_id(pn_msg())); |
nothing calls this directly
no test coverage detected