KDStateMachineEditor  1.0.0
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.
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
All rights reserved.
Author: Kevin Funk <kevin.funk@kdab.com>
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.
This file may be distributed and/or modified under the terms of the
GNU Lesser General Public License version 2.1 as published by the
Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
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)
Qt-related services and products
http://www.kdab.com/
https://github.com/KDAB/KDStateMachineEditor