* Constructs a simple timer. */
| 78 | * Constructs a simple timer. |
| 79 | */ |
| 80 | SimpleTimer() : |
| 81 | m_isRunning(false), |
| 82 | m_isTimeout(false), |
| 83 | m_duration(0U), |
| 84 | m_start(0U) |
| 85 | { |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Destroys a simple timer. |
nothing calls this directly
no outgoing calls
no test coverage detected