| 110 | vector<Timer*> Timer::s_allTimers; |
| 111 | |
| 112 | Timer::Timer(const std::string& name) : |
| 113 | m_name(name), m_totalTime(0.0), m_lastStart(0) |
| 114 | {} |
| 115 | |
| 116 | Timer* Timer::get_timer(const string& name) |
| 117 | { |
nothing calls this directly
no outgoing calls
no test coverage detected