| 200 | } |
| 201 | |
| 202 | void Tr2Controller::Start() |
| 203 | { |
| 204 | if( m_isActive ) |
| 205 | { |
| 206 | Stop(); |
| 207 | } |
| 208 | m_dirtyVariables = 0xffffffffffffffffull; |
| 209 | for( auto it = begin( m_stateMachines ); it != end( m_stateMachines ); ++it ) |
| 210 | { |
| 211 | ( *it )->Start(); |
| 212 | } |
| 213 | m_isActive = true; |
| 214 | } |
| 215 | |
| 216 | void Tr2Controller::Stop() |
| 217 | { |
no test coverage detected