| 93 | } |
| 94 | |
| 95 | void Tr2StateMachine::Unlink( UnlinkReason reason ) |
| 96 | { |
| 97 | if( !m_controller ) |
| 98 | { |
| 99 | return; |
| 100 | } |
| 101 | if( reason != UnlinkReason::DELETING ) |
| 102 | { |
| 103 | Stop(); |
| 104 | } |
| 105 | for( auto it = begin( m_states ); it != end( m_states ); ++it ) |
| 106 | { |
| 107 | ( *it )->Unlink( reason ); |
| 108 | } |
| 109 | m_controller = nullptr; |
| 110 | } |
| 111 | |
| 112 | void Tr2StateMachine::FollowTransitions( uint64_t variableDirtyMask ) |
| 113 | { |
no test coverage detected