KDStateMachineEditor  1.1.0
A framework for creating Qt State Machine metacode using a graphical user interface
qsmdebuginterfacesource.h
1 /*
2  This file is part of the KDAB State Machine Editor Library.
3 
4  Copyright (C) 2014-2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
5  All rights reserved.
6  Author: Kevin Funk <kevin.funk@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_QSMDEBUGINTERFACESOURCE_H
24 #define KDSME_QSMDEBUGINTERFACESOURCE_H
25 
26 #include "kdsme_debuginterfacesource_export.h"
27 
28 #include <QScopedPointer>
29 
30 QT_BEGIN_NAMESPACE
31 class QStateMachine;
32 QT_END_NAMESPACE
33 
34 namespace KDSME {
35 
36 class KDSME_DEBUGINTERFACESOURCE_EXPORT QsmDebugInterfaceSource
37 {
38 public:
40  virtual ~QsmDebugInterfaceSource();
41 
42  QStateMachine *qStateMachine() const;
43  void setQStateMachine(QStateMachine* machine);
44 
50  QObject* remoteObjectSource() const;
51 
52 private:
53  class Private;
54  QScopedPointer<Private> d;
55 };
56 
57 }
58 
59 #endif // KDSME_QSMDEBUGINTERFACESOURCE_H
Definition: qsmdebuginterfacesource.h:36
Definition: abstractexporter.h:33

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
https://github.com/KDAB/KDStateMachineEditor