1#ifndef STATEMACHINE05B_H
2#define STATEMACHINE05B_H
5#include "xf/behavior.h"
Definition: statemachine05b.h:19
XFEventStatus processEvent() override
Remplementation from XFReactive.
Definition: statemachine05b.cpp:21
eMainState
Definition: statemachine05b.h:43
@ STATE_UNKNOWN
Unknown state.
Definition: statemachine05b.h:44
@ STATE_SAY_TEXT
Say "text" state.
Definition: statemachine05b.h:46
@ STATE_INITIAL
Initial state.
Definition: statemachine05b.h:45
eTimeoutId
Definition: statemachine05b.h:34
@ Timeout_SAY_HELLO_id
Timeout id for WAIT.
Definition: statemachine05b.h:35
eMainState currentState_
Attribute indicating currently active state.
Definition: statemachine05b.h:49
std::string text_
Text to display in state machine state.
Definition: statemachine05b.h:51
StateMachine05b(std::string text)
Definition: statemachine05b.cpp:10
std::string getText() const
Returns text. Accessor for #_text.
Definition: statemachine05b.h:27