2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2011-04-27 10:05:43 +00:00
|
|
|
//![0]
|
2022-08-31 07:59:05 +00:00
|
|
|
import TimeExample // import types from the plugin
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-10-23 10:44:41 +00:00
|
|
|
Clock { // this class is defined in QML (imports/TimeExample/Clock.qml)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Time { // this class is defined in C++ (plugin.cpp)
|
|
|
|
id: time
|
|
|
|
}
|
|
|
|
|
|
|
|
hours: time.hour
|
|
|
|
minutes: time.minute
|
2011-08-30 06:18:20 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//![0]
|