1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include "statemachineextended_p.h" |
5 | |
6 | #include <QtScxml/qscxmlglobals.h> |
7 | #include <QtScxml/qscxmlstatemachine.h> |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | QScxmlStateMachineExtended::QScxmlStateMachineExtended(QObject *extendee) : |
12 | QObject(extendee) |
13 | { |
14 | } |
15 | |
16 | QQmlListProperty<QObject> QScxmlStateMachineExtended::children() |
17 | { |
18 | return QQmlListProperty<QObject>(this, &m_children); |
19 | } |
20 | |
21 | QT_END_NAMESPACE |
22 |