* Sets the interval for this timer. * * @param interval The new interval. */
| 141 | * @param interval The new interval. |
| 142 | */ |
| 143 | void Timer::SetInterval(double interval) |
| 144 | { |
| 145 | std::unique_lock<std::mutex> lock(l_TimerMutex); |
| 146 | m_Interval = interval; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Retrieves the interval for this timer. |
no outgoing calls
no test coverage detected