| 64 | static Defer l_ShutdownTimersCleanlyOnExit (&Timer::Uninitialize); |
| 65 | |
| 66 | Timer::Ptr Timer::Create() |
| 67 | { |
| 68 | Ptr t (new Timer()); |
| 69 | |
| 70 | t->m_Self = t; |
| 71 | |
| 72 | return t; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Destructor for the Timer class. |
nothing calls this directly
no outgoing calls
no test coverage detected