| 76 | } |
| 77 | |
| 78 | int StopWatch::getMsSinceCreation() const |
| 79 | { |
| 80 | const auto newTimePoint = std::chrono::high_resolution_clock::now(); |
| 81 | const auto msecsSinceCreation = |
| 82 | std::chrono::duration_cast<std::chrono::milliseconds>(newTimePoint - this->creationTimePoint); |
| 83 | return msecsSinceCreation.count(); |
| 84 | } |
| 85 | |
| 86 | PlaybackController::PlaybackController() |
| 87 | { |