| 209 | void BasicMessage::MessageIdClear() { m_impl->message_id.reset(); } |
| 210 | |
| 211 | boost::uint64_t BasicMessage::Timestamp() const { |
| 212 | return m_impl->timestamp.value_or(0); |
| 213 | } |
| 214 | void BasicMessage::Timestamp(boost::uint64_t timestamp) { |
| 215 | m_impl->timestamp = timestamp; |
| 216 | } |
nothing calls this directly
no outgoing calls
no test coverage detected