| 145 | } |
| 146 | |
| 147 | void message::address(const std::string &addr) { |
| 148 | check(pn_message_set_address(pn_msg(), addr.c_str())); |
| 149 | } |
| 150 | |
| 151 | std::string message::address() const { |
| 152 | const char* addr = pn_message_get_address(pn_msg()); |
nothing calls this directly
no test coverage detected