KDStateMachineEditor API Documentation  1.2.9
A framework for creating Qt State Machine metacode using a graphical user interface
export/main.cpp

This is an example of how to use the inheriters of the KDSME::AbstractExporter class.

/*
This file is part of the KDAB State Machine Editor Library.
SPDX-FileCopyrightText: 2015-2021 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Kevin Funk <kevin.funk@kdab.com>
SPDX-License-Identifier: LGPL-2.1-only OR LicenseRef-KDAB-KDStateMachineEditor
Licensees holding valid commercial KDAB State Machine Editor Library
licenses may use this file in accordance with the KDAB State Machine Editor
Library License Agreement provided with the Software.
Contact info@kdab.com if any conditions of this licensing are not clear to you.
*/
#include "config-examples.h"
#include <state.h>
#include <qmlexporter.h>
#include <scxmlexporter.h>
#include <QTextStream>
using namespace KDSME;
int main()
{
QTextStream qErr(stderr);
QTextStream qOut(stdout);
StateMachine machine;
machine.setLabel("root");
State s1(&machine);
s1.setLabel("s1");
State s2(&machine);
s2.setLabel("s2");
s1.addSignalTransition(&s2);
QByteArray qmlOutput;
QmlExporter qmlExporter(&qmlOutput);
if (!qmlExporter.exportMachine(&machine)) {
qErr << "Failed to export to QML:" << qmlExporter.errorString();
return 1;
}
qOut << "=== Output [QML] ===" << endl;
qOut << qmlOutput << endl;
qOut << endl;
QByteArray scxmlOutput;
ScxmlExporter scxmlExporter(&scxmlOutput);
if (!scxmlExporter.exportMachine(&machine)) {
qErr << "Failed to export to SCXML:" << scxmlExporter.errorString();
return 1;
}
qOut << "=== Output [SCXML] ===" << endl;
qOut << scxmlOutput << endl;
qOut << endl;
}

Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
KDStateMachineEditor
Create Qt State Machine metacode using a graphical user interface
https://github.com/KDAB/KDStateMachineEditor