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

This mode manager has a trivial implementation of the update service that returns without taking any action. It should be used when the punctual action manager operates upon a fixed list of punctual actions.
An initialization sequence for this class consists of the following steps (to be performed in the order given here):
setListLength setListPunctualAction reset
Definition at line 34 of file DC_SimplePunctualActionModeManager.h.
Public Member Functions | |
| DC_SimplePunctualActionModeManager (void) | |
| Instantiate a punctual action mode manager. | |
| virtual void | update (void) |
| Since this is a fixed-mode mode manager, this method returns without taking any action. | |
|
|
Instantiate a punctual action mode manager. This constructor sets the class identifier and it configures its superclass to manage only one single mode. A pseudo-code implementation is as follows:
setClassId(ID_SIMPLEPUNCTUALACTIONMODEMANAGER);
setNumberOfModes(1);
setDefaultMode(0);
Definition at line 14 of file DC_SimplePunctualActionModeManager.cpp. |