///////////////////////////////////////////////////////
| 49 | |
| 50 | //////////////////////////////////////////////////////////// |
| 51 | void Clock::start() |
| 52 | { |
| 53 | if (!isRunning()) |
| 54 | { |
| 55 | m_refPoint += priv::ClockImpl::now() - m_stopPoint; |
| 56 | m_stopPoint = {}; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | |
| 61 | //////////////////////////////////////////////////////////// |