Add sample application[phone]
[staging/soundmanager.git] / sample / phone / app / models / CallHistoryModel.qml
1 /* Copyright (C) 2015, Jaguar Land Rover. All Rights Reserved.
2  * Copyright (C) 2016, The Qt Company. All Rights Reserved.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7
8 import QtQml.Models 2.2
9
10 ListModel {
11     ListElement {
12         name: "Droopy"
13         number: "8003451234"
14         time: "2015-01-05 07:15"
15     }
16
17     ListElement {
18         name: "Doc"
19         number: "8003451234"
20         time: "2015-01-05 07:15"
21     }
22
23     ListElement {
24         name: "Grumpy"
25         number: "8003451234"
26         time: "2015-01-05 07:15"
27     }
28
29     ListElement {
30         name: "Bashful"
31         number: "8003451234"
32         time: "2015-01-05 07:15"
33     }
34 }