2023-03-17 14:42:47 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2022-05-13 13:12:05 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import People
|
|
|
|
import QtQuick // For QColor
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
BirthdayParty {
|
2012-02-09 16:31:02 +00:00
|
|
|
Boy {
|
|
|
|
name: "Robert Campbell"
|
2023-03-17 14:42:47 +00:00
|
|
|
BirthdayParty.rsvp: Date.fromLocaleString(Qt.locale(), "2023-03-01", "yyyy-MM-dd")
|
2012-02-09 16:31:02 +00:00
|
|
|
}
|
2023-03-17 14:42:47 +00:00
|
|
|
|
2012-02-09 16:31:02 +00:00
|
|
|
Boy {
|
|
|
|
name: "Leo Hodges"
|
2011-04-27 10:05:43 +00:00
|
|
|
shoe { size: 10; color: "black"; brand: "Reebok"; price: 59.95 }
|
2023-03-17 14:42:47 +00:00
|
|
|
BirthdayParty.rsvp: Date.fromLocaleString(Qt.locale(), "2023-03-03", "yyyy-MM-dd")
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2023-03-17 14:42:47 +00:00
|
|
|
|
2012-06-20 04:11:02 +00:00
|
|
|
host: Boy {
|
2012-02-09 16:31:02 +00:00
|
|
|
name: "Jack Smith"
|
2011-04-27 10:05:43 +00:00
|
|
|
shoe { size: 8; color: "blue"; brand: "Puma"; price: 19.95 }
|
|
|
|
}
|
|
|
|
}
|