QScxmlInvokableService Class▲
-
Header: QScxmlInvokableService
-
Since: Qt 5.8
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Scxml)
target_link_libraries(mytarget PRIVATE Qt6::Scxml)
-
qmake: QT += scxml
-
Inherits: QObject
-
Inherited By:
Detailed Description▲
The services are called from state machines via the mechanism described in SCXML Specification - 6.4 <invoke>. This class represents an actual instance of an invoked service.
Property Documentation▲
[read-only] id : const QString▲
This property holds the ID of the invokable service.
The ID is specified by the id attribute of the <invoke> element.
Access functions:
-
virtual id() const = 0
[read-only] name : const QString▲
This property holds the name of the service being invoked.
Access functions:
-
virtual name() const = 0
[read-only] parentStateMachine : QScxmlStateMachine* const▲
This property holds the SCXML state machine that invoked the service.
Access functions:
-
*parentStateMachine() const