KDStateMachineEditor
1.0.0
A framework for creating Qt State Machine metacode using a graphical user interface
Main Page
Namespaces
Classes
Examples
src
core
export
svgexporter.h
1
/*
2
This file is part of the KDAB State Machine Editor Library.
3
4
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
5
All rights reserved.
6
Author: Volker Krause <volker.krause@kdab.com>
7
8
Licensees holding valid commercial KDAB State Machine Editor Library
9
licenses may use this file in accordance with the KDAB State Machine Editor
10
Library License Agreement provided with the Software.
11
12
This file may be distributed and/or modified under the terms of the
13
GNU Lesser General Public License version 2.1 as published by the
14
Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
15
16
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
17
WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18
19
Contact info@kdab.com if any conditions of this licensing are not
20
clear to you.
21
*/
22
23
#ifndef KDSME_SVGEXPORTER_H
24
#define KDSME_SVGEXPORTER_H
25
26
#include "abstractexporter.h"
27
28
class
QIODevice;
29
30
namespace
KDSME
{
31
32
class
SvgExporterPrivate;
33
34
class
KDSME_CORE_EXPORT
SvgExporter
:
public
AbstractExporter
35
{
36
public
:
37
explicit
SvgExporter
(QIODevice *ioDevice);
38
~
SvgExporter
();
39
40
bool
exportMachine(
StateMachine
* machine)
override
;
41
private
:
42
friend
class
SvgExporterPrivate;
43
QScopedPointer<SvgExporterPrivate> d;
44
};
45
46
}
47
48
#endif // KDSME_SVGEXPORTER_H
KDSME::StateMachine
Definition:
state.h:160
KDSME::AbstractExporter
Definition:
abstractexporter.h:37
KDSME::SvgExporter
Definition:
svgexporter.h:34
KDSME
Definition:
abstractexporter.h:33
Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
https://github.com/KDAB/KDStateMachineEditor