This is the complete list of members for class svt_fsm_callback, including all inherited members.
| svt_fsm_callback | virtual function void | abort ( svt_fsm fsm ) | This method gets called whenever the FSM is aborted. The svt_fsm :: run method will return afterward. |
| svt_fsm_callback | virtual function void | exception ( svt_fsm fsm, svt_fsm_exception except ) | This method is called whenever the svt_fsm :: exception is called. |
| svt_fsm_callback | virtual function void | goto ( svt_fsm_state_base from_state, ref svt_fsm_state_base to_state ) | This method gets called whenever the FSM change state. 'from_state' is NULL when transitioning to the start state when svt_fsm :: run is called. If 'to_state' is modified, the FSM will transition to the newly specified state. |
| svt_fsm_callback | virtual function void | reset ( svt_fsm fsm ) | This method gets called whenever the FSM is reset. The goto method to the reset state will be called afterward. |