blob: 14ce607a861e8985cd569f95fce033ea21f10116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{#
# Copyright (C) 2021 The Qt Company Ltd.
# Copyright (C) 2019 Luxoft Sweden AB
# Copyright (C) 2018 Pelagicore AG
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#}
{% include "common/generated_comment.qml.jinja" %}
import QtQuick
import {{module|qml_type}}.simulation
QtObject {
{% for iface in module.interfaces %}
property var {{iface|lower}} : {{iface|upperfirst}}Simulation {
id: {{iface|lower}}
}
{% endfor %}
}
|