| 68 | } |
| 69 | |
| 70 | void Tr2ControllerEventHandler::Execute( ITr2ActionController& controller ) |
| 71 | { |
| 72 | for( auto it = begin( m_actions ); it != end( m_actions ); ++it ) |
| 73 | { |
| 74 | ( *it )->Start( controller ); |
| 75 | } |
| 76 | for( auto it = begin( m_actions ); it != end( m_actions ); ++it ) |
| 77 | { |
| 78 | ( *it )->Stop( controller ); |
| 79 | } |
| 80 | } |
no test coverage detected