| 12 | } |
| 13 | |
| 14 | std::unique_ptr<mdf::ITimestamp> MdfUtcTimestamp::GetTimestamp() { |
| 15 | std::unique_ptr<mdf::UtcTimestamp> timestamp( |
| 16 | new mdf::UtcTimestamp(utc_timestamp_)); |
| 17 | return std::move(timestamp); |
| 18 | } |
| 19 | |
| 20 | MdfLocalTimestamp::MdfLocalTimestamp(const uint64_t local_timestamp) { |
| 21 | local_timestamp_ = local_timestamp; |
no outgoing calls
no test coverage detected