| 415 | // |
| 416 | |
| 417 | EventQueue::Timer::Timer(EventQueueTimer *timer, double timeout, double initialTime, void *target, bool oneShot) |
| 418 | : m_timer(timer), |
| 419 | m_timeout(timeout), |
| 420 | m_target(target), |
| 421 | m_oneShot(oneShot), |
| 422 | m_time(initialTime) |
| 423 | { |
| 424 | assert(m_timeout > 0.0); |
| 425 | } |
| 426 | |
| 427 | void EventQueue::Timer::reset() |
| 428 | { |
nothing calls this directly
no outgoing calls
no test coverage detected