| 52 | namespace sdbus { |
| 53 | |
| 54 | Message::Message(internal::IConnection* connection) noexcept |
| 55 | : connection_(connection) |
| 56 | { |
| 57 | assert(connection_ != nullptr); |
| 58 | } |
| 59 | |
| 60 | Message::Message(void *msg, internal::IConnection* connection) noexcept |
| 61 | : msg_(msg) |
nothing calls this directly
no test coverage detected