The Wayback Machine - https://web.archive.org/web/20200614102827/https://github.com/topics/scxml
Skip to content
#

scxml

Here are 27 public repositories matching this topic...

frederickjh
frederickjh commented Feb 17, 2019

@lbellonda I did not find a repository for the QXmlEdit website so I could submit a pull request for this, so I am opening an issue to have this added to the website.

I just released the QXmlEdit snap on the stable release channel. Quite some time has gone by without any negative feedback.

At this point it would be good if instructions on how to install the QXmlEdit snap could be added to th

sarpik
sarpik commented Jan 2, 2020
struct StateMachine {
	const char *id;
	const char *initial;
	States states;
+	const char *value;

-	const char *transition(const char *currentState, const char *event) {
+	StateMachine *transition(const char *currentState, const char *event) {
		const char *nextState = this->states[currentState].on[event];
+		this->value = nextState;
-		return nextState;
+		return this;
	}
}

Improve this page

Add a description, image, and links to the scxml topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the scxml topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.