| 83 | return delta; |
| 84 | } |
| 85 | double QpcTimer::Peek() const noexcept |
| 86 | { |
| 87 | const auto newTimestamp = GetCurrentTimestamp(); |
| 88 | const auto delta = TimestampDeltaToSeconds(startTimestamp_, newTimestamp, performanceCounterPeriod_); |
| 89 | return delta; |
| 90 | } |
| 91 | int64_t QpcTimer::GetStartTimestamp() const noexcept |
| 92 | { |
| 93 | return startTimestamp_; |
no test coverage detected