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
9QT_BEGIN_NAMESPACE
10
11QScxmlStateMachineExtended::QScxmlStateMachineExtended(QObject *extendee) :
12 QObject(extendee)
13{
14}
15
16QQmlListProperty<QObject> QScxmlStateMachineExtended::children()
17{
18 return QQmlListProperty<QObject>(this, &m_children);
19}
20
21QT_END_NAMESPACE
22

source code of qtscxml/src/scxmlqml/statemachineextended.cpp