#include <DC_DummyFsmState.h>
Inheritance diagram for DC_DummyFsmState:

The actions associated to the FsmState are implemented as dummy actions that return without doing anything. The checks associated to the FsmState are implemented to always return: "state can be entered", "state can be exited", and "continued action has not yet terminated". This means that this state is a stable state that will not be exited unless a state change is commanded to the FSM.
Definition at line 32 of file DC_DummyFsmState.h.
Public Member Functions | |
| DC_DummyFsmState (void) | |
| Instantiate a dummy FsmState object and initialize the activation counter to zero. | |
| virtual void | doContinue (void) |
| Implement dummy continued action: the method increments the activation counter by 1 returns. | |
|
|
Implement dummy continued action: the method increments the activation counter by 1 returns.
Implements FsmState. Definition at line 18 of file DC_DummyFsmState.cpp. |