tkem / fsmlite

Lightweight finite state machine framework for C++11
MIT License
156 stars 25 forks source link

Exit action #29

Closed kariem2k closed 3 years ago

kariem2k commented 3 years ago

Hello,

Is there a way to detect that a state is exited?

Thanks

tkem commented 3 years ago

You mean something like an exit_state(state_type) method? No, there isn't. That would have to be handled in each action method.