@copydoc Timer* ITimerPool::createTimer(const char*) */
| 32 | |
| 33 | /** @copydoc Timer* ITimerPool::createTimer(const char*) */ |
| 34 | Timer* TestableTimerPool::createTimer(const char* name) |
| 35 | { |
| 36 | Timer* timer = new Timer(*this, name); |
| 37 | m_timers.push_back(timer); |
| 38 | return timer; |
| 39 | } |
| 40 | |
| 41 | /** @copydoc Timer* ITimerPool::getTimer(const std::string&) */ |
| 42 | Timer* TestableTimerPool::getTimer(const std::string& timer_name) |