| 90 | } |
| 91 | |
| 92 | void MdfHeader::RecorderIndex::set(int64_t index) { |
| 93 | if (header_ != nullptr) { |
| 94 | header_->RecorderIndex(index); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | uint64_t MdfHeader::StartTime::get() { |
| 99 | return header_ != nullptr ? header_->StartTime() : 0; |
nothing calls this directly
no test coverage detected