Qt IVI Generator Addressbook Example

/**************************************************************************** ** Generated from 'Example.IVI.AddressBook.qface' ** ** Created by: The QFace generator (QtAS 5.12.8) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/
#include "addressbookbackendinterface.h" /*! \class AddressBookBackendInterface \inmodule Example.IVI.AddressBook \ingroup backends \inherits QIviFeatureInterface \keyword Example.IVI.AddressBook.AddressBook \brief Backend interface for AddressBook. The AddressBookBackendInterface is the interface used by \l AddressBook. The interface is discovered by a \l AddressBook object, which connects to it and sets up the connections to it. \sa AddressBook */ AddressBookBackendInterface::AddressBookBackendInterface(QObject *parent) : QIviFeatureInterface(parent) { } AddressBookBackendInterface::~AddressBookBackendInterface() { } /*! \fn void AddressBookBackendInterface::setContacts(QIviPagingModel *contacts); Setter for AddressBook::contacts. Sets the property \e contacts to the new value passed by \a contacts. This method is expected to emit a \l contactsChanged() signal when the internal state changes due to this function call. The signal is even expected to be emitted if the given \a contacts is out of range and no actual change takes place. \sa contactsChanged() */ /*! \fn QIviPendingReply<void> AddressBookBackendInterface::insertContact(int index, const Contact &contact); */ /*! \fn void AddressBookBackendInterface::contactsChanged(QIviPagingModel *contacts); The signal is emitted when the \e contacts property changed to \a contacts. \sa setContacts \sa AddressBook::contacts */