Qt IVI Generator Addressbook Example

module Example.IVI.AddressBook 1.0;

@config: { qml_type: "UiAddressBook" }
interface AddressBook {
    model<Contact> contacts;

    void insertContact(int index, Contact contact);
}

struct Contact {
    string forename;
    string name;
    int phone;
}